2016-01-25 47 views
-4

這是我寫的代碼,我無法得到這個角色,我用1我是Perl的初學者,如何前進?請檢查代碼

#!/usr/bin/perl 
# your code goes here 

for($i =99; $i >= 0; $i--) 
{ 
    print "$i bottles of beer on the wall, $i bottles of beer 
Take one down and pass it around, $i bottles of beer on the wall.\n"; 
    } 
+3

你可以請你的代碼作爲問題的一部分(在文本),而不是作爲一個屏幕截圖? – Hambone

+0

如果您要求進行代碼審查,則此代碼位於[代碼審閱](http://codereview.stackexchange.com/)網站上。 –

+0

我無法正確編輯它,我猜想,因此它不接受代碼。 – steve

回答

3
for ($i = 99 ; $i > 0;) { 
    print "$i bottles of beer on the wall, $i bottles of beer 
Take one down and pass it around, ", --$i, " bottles of beer on the wall.\n"; 
} 

降低沒有啤酒的我把它作爲一個練習,你切換從「瓶」到「瓶」,當你到達最後一個...