如题 如何用c语言do while循环打印1-10
前面的主函数啥的不打了int a;do{printf(“%d”,a);a++;}while(a<=10);
图片
int i = 1; do { printf("%d\n",i); i++; } while (i <= 10);