嵌套for循环
Posted 且行且停且留心,静看明朝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了嵌套for循环相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
int main()
{
int i,j;
for(i=1;i<10;i++)
{
for(j=1;j<10;j++)
{
printf("$");
}
printf("\n");
}
return 0;
}
$$$$$$$$$
$$$$$$$$$
$$$$$$$$$
$$$$$$$$$
$$$$$$$$$
$$$$$$$$$
$$$$$$$$$
$$$$$$$$$
$$$$$$$$$
Press any key to continue
以上是关于嵌套for循环的主要内容,如果未能解决你的问题,请参考以下文章