C++学习-嵌套循环与九九乘法表案例
Posted 殇堼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习-嵌套循环与九九乘法表案例相关的知识,希望对你有一定的参考价值。
嵌套循环
嵌套循环指的是:在循环语句中嵌套循环语句。
例如for循环中再写入一个for循环,特点:外部循环执行一次,内部循环执行一周。
#include <iostream>
using namespace std;
int main()
{
for (int i = 0; i < 10; i++)
{
for (int i = 0; i < 10; i++){
cout << "*" ;
}
cout << endl;
}
}
九九乘法表案例
#include <iostream>
using namespace std;
int main()
{
//打印出行号
for (int i = 1; i < 10; i++)
{
//列数始终不大于行数,设j为列数
for (int j = 1; j < i+1; j++) {
//列数X行数=结果
cout << j<< "x"<<i<<"="<<j*i<<" ";
}
cout << endl;
}
}
以上是关于C++学习-嵌套循环与九九乘法表案例的主要内容,如果未能解决你的问题,请参考以下文章