首页 > 代码库 > C++ 循环语句for while goto
C++ 循环语句for while goto
goto 语句
程序一:
#include<iostream>
using namespace std;
int main()
{
number:i++;
}
运行结果:
**********
程序结束!
**********
goto语句一旦出现错误不易察觉,所以一般不用goto语句。
while语句
程序一:
#include<iostream>
using namespace std;
int main()
{
}
程序二:
#include<iostream>
using namespace std;
int main()
{
}
程序三:
#include<iostream>
using namespace std;
int main()
{
}
#include<iostream>
using namespace std;
int main()
{
}
永不休止的while循环
程序五:
#include<iostream>
using namespace std;
int main()
{
}
do& while循环
程序一:
#include<iostream>
using namespace std;
int main()
{
//如果我们输入0,也就是条件不满足的话,while循环可能一次都不执行
}
程序二:
#include<iostream>
using namespace std;
int main()
{
}
for语句
程序一:
#include<iostream>
using namespace std;
int main()
{
}
程序二:
#include<iostream>
using namespace std;
int main()
{
}
程序三:
#include<iostream>
using namespace std;
int main()
{
//可以换成while(i<3)
}
程序四:
#include<iostream>
using namespace std;
int main()
{
}
程序五:
#include<iostream>
using namespace std;
int main()
{
}
程序六:
#include<iostream>
using namespace std;
int main()
{
int a,b;
char c[10];
cout<<"行数:"<<endl;
cin>>a;
cout<<"列数:"<<endl;
cin>>b;
cout<<"什么字符:"<<endl;
cin>>c;
for(int i=0;i<a;i++)
{
for(int j=0;j<b;j++)
{
cout<<c;
}
cout<<endl;
}
return 0;
}
C++ 循环语句for while goto