零加到一百 c语言 do....whule 完整程序

答:#include <stdio.h>int main() { int i = 0; while (i <= 100) { printf("%d\n", i); i++; } return 0; }

猜你喜欢

转载自blog.csdn.net/weixin_35749545/article/details/129510827