正在加载图片...
5.1循环语句 问题 ·打印整数1~10 while(i<=10) printf(%d,i) 打印整数1~100 + 打印整数1~n =1: printf(%d,1) printf( %d",i; i++ printf(%d", 2) printf( %d,i;i++ printf( %d, 10) printf( %d,i); i++5.1 循环语句 问题 • 打印整数1~10 • 打印整数1~100 • 打印整数1~n printf("%d", 1); printf("%d", 2); …… printf("%d", 10); i=1; printf("%d", i); i++; printf("%d", i); i++; …… printf("%d", i); i++; i=1; while(i<=10){ printf("%d", i); i++; }
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有