Board logo

標題: 老師,我寫出了這樣的程式,請過目 [打印本頁]

作者: 謝瀞儀    時間: 2014-11-29 13:39     標題: 老師,我寫出了這樣的程式,請過目

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int i=123 ,j=0;
  8.     while(i<=456)
  9.     {
  10.         cout<<i<<endl;
  11.         i+=3;
  12.         goto re;
  13.     }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

作者: 謝瀞儀    時間: 2014-11-29 13:56

本帖最後由 謝瀞儀 於 2014-11-29 13:59 編輯

還有這個
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int i=123 ,j=0;
  8.     while(i<=456)
  9.     {
  10.         j+=i;
  11.         i+=3;
  12.         cout<<"123+126+129...+453+456="<<j<<endl;      
  13.         goto re;  
  14.     }
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: ray    時間: 2014-11-29 23:15

goto到re然後i,j重置,永遠跳不出的while導致再一次的goto,這是一個完美的無窮迴圈~




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2