循环语句中的continue与break 1.for语句中
Posted ybossy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了循环语句中的continue与break 1.for语句中相关的知识,希望对你有一定的参考价值。
举个例子:
#include <iostream>
#include <Windows.h>
#include <string>
using namespace std;
int main (void){
int i = 0;
string ret;
for(int i = 0;i < 5; i++){
cout<<"开始第"<<i+1<<"次相亲"<<endl;
cout<<"你有钱吗?";
cin>>ret;
if (ret != "yes"){
cout<<"再见"<<endl;
continue;
}
cout<<"加个微信吧"<<endl;
}
system("pause");
return 0;
}
continue :退出本次循环执行下一次循环,在这里的for语句中,如果输入了“no”,返回执行下一个循环,先执行i++,在判断i<5.
break;
以上是关于循环语句中的continue与break 1.for语句中的主要内容,如果未能解决你的问题,请参考以下文章