C++ break语句,continue语句,goto语句
生活随笔
收集整理的這篇文章主要介紹了
C++ break语句,continue语句,goto语句
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
break 語句的作用:
跳出當前循環,中斷當前循環
#include <iostream>
using namespace std;
int main()
{for (int i = 0; i < 10; i++){cout << i << endl;if (i==5){break;}}return 0;
}
打印結果:
?continue語句的作用:
跳過本次循環, 整體循環繼續.
#include <iostream>
using namespace std;
int main()
{for (int i = 0; i < 10; i++){if (i==5){continue;}cout << i << endl;}return 0;
}
打印結果:
?goto語句的作用:
改變語句執行的順序,結束循環.
#include <iostream>
using namespace std;
int main()
{for (int i = 0; i < 10; i++){cout << i << endl;goto label;}label:cout << "11111" << endl;return 0;
}
打印結果:
?
總結
以上是生活随笔為你收集整理的C++ break语句,continue语句,goto语句的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 求一个女孩子个性签名!
- 下一篇: 办理邮政储蓄卡要多少钱?