作用:在循环体中再嵌套一层循环,解决一些实际问题
例如:打印矩阵
for(int i = 0; i < 10; i ++) { for (int j = 0; j < 10; j ++) { cout << "* "; } cout << endl; }