摘要: do while 循环小练习 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main(void) 5 { 6 int a; 7 do{ 8 fprintf(stdout,"%s\n","请输入一个整数:"); 9 scanf("%d",&a); 阅读全文
posted @ 2020-09-22 19:32 天使不设防 阅读(204) 评论(0) 推荐(0) 编辑