標題:
continue、break、return (二)
[打印本頁]
作者:
鄭繼威
時間:
2024-1-3 18:06
標題:
continue、break、return (二)
break
語法能強制程序立即跳出所在迴圈。
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
{
if(i==5)
break;
cout<<i<<endl;
}
for(int i=1; i<=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2