#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
a=1;
while(a<=2) // 这里的2
{
b=1;
while(b<=3) // 这里的3
{
printf("ok");
b=b+1; //打印2*3个ok
}
a=a+1;
}
system("pause");
return 0;
11.17-while循环 循环多少次? 打印多少个?
最新推荐文章于 2023-04-18 23:39:06 发布