求用while a外循环和while b内循环打印以下图形的代码(C语言的) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

新手,代码别太复杂,谢谢~

#include<stdio.h>

int main()
{
int i=0,j=0,temp=0;
while(i<5)
{
j=0;
while(j<=i)
{
temp++;
j++;
printf("%d ",temp);
}
printf("\n");
i++;
}
}

温馨提示:答案为网友推荐,仅供参考
相似回答