#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;
02-20
1万+
