1、continue 语句
作用:在循环语句中,跳过本次循环中余下尚未执行的语句。继续下一次循环。
注意:continue只能用于循环中。
示例:
代码:
//continue的用法
#include<iostream>
using namespace std;
int main()
{
//如果是奇数,则输出,否则不输出
for (int i = 1; i <= 100; i++)
{
if (i % 2 == 0)
{
continue;
}
cout << i << endl;
}
system("pause");
return 0;
}
注意:continue 并没有使整个循环终止,而break会跳出循环。
2、goto语句
作用:可以无条件跳转语句。
语法:goto 标记;
注意:一般情况下,我们给标记起名时,一般都大写。
解释:如果标记存在,执行到goto语句时,会跳转到标记的位置。
示例:
代码:
//goto语句的使用
#include<iostream>
using namespace std;
int main()
{
cout << "1.hello" << endl;
cout << "2.world" << endl;
goto FLAG;
cout << "3.girl" << endl;
cout << "4.boy" << endl;
FLAG:
cout << "5.hahahaha" << endl;system("pause");
return 0;
}
注意:在程序中不建议使用goto语句,以免造成程序流程混乱。
标签:语句,goto,int,continue,循环,cout From: https://blog.csdn.net/hefaxiang/article/details/144220330