標題:
老師,我寫出了這樣的程式,請過目
[打印本頁]
作者:
謝瀞儀
時間:
2014-11-29 13:39
標題:
老師,我寫出了這樣的程式,請過目
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int i=123 ,j=0;
while(i<=456)
{
cout<<i<<endl;
i+=3;
goto re;
}
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-11-29 13:56
本帖最後由 謝瀞儀 於 2014-11-29 13:59 編輯
還有這個
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int i=123 ,j=0;
while(i<=456)
{
j+=i;
i+=3;
cout<<"123+126+129...+453+456="<<j<<endl;
goto re;
}
system("pause");
return 0;
}
複製代碼
作者:
ray
時間:
2014-11-29 23:15
goto到re然後i,j重置,永遠跳不出的while導致再一次的goto,這是一個完美的無窮迴圈~
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2