C++学习笔记(第十一天)
Posted 凿壁不偷光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习笔记(第十一天)相关的知识,希望对你有一定的参考价值。
嵌套循环
using namespace std;
int main()
{
for (int i = 0; i < 100; i++)
{
cout << "* ";
if (i % 10 == 9)
cout << endl;
}
system("pause");
return 0;
}
using namespace std;
int main()
{
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 10; j++)
{
cout << "* ";
}
cout << endl;
}
system("pause");
return 0;
}
乘法口诀表
using namespace std;
int main()
{
for (int i = 1; i < 10; i++)//行数
{
for (int j = 1; j <=i; j++)//列数
{
cout <<j<<"*"<<i<<"="<<j*i<<" ";
}
cout << endl;
}
system("pause");
return 0;
}
break语句
作用: 用于跳出==选择结构==或者==循环结构==
break使用的时机:
出现在switch条件语句中,作用是终止case并跳出switch
出现在循环语句中,作用是跳出当前的循环语句
出现在嵌套循环中,跳出最近的内层循环语句
以上是关于C++学习笔记(第十一天)的主要内容,如果未能解决你的问题,请参考以下文章