上一页 1 ··· 242 243 244 245 246 247 248 249 250 ··· 367 下一页
摘要: 复习题 9 #include <stdio.h> void show_menu(void); int getchoice(int low, int high); int main(void) { int res; show_menu(); while((res = getchoice(1,4)) ! 阅读全文
posted @ 2021-09-03 21:45 小鲨鱼2018 阅读(72) 评论(0) 推荐(0) 编辑
摘要: x <- c(0.20, 0.65, 1.13, 2.55, 4.00, 5.75, 7.80, 10.20, 12.90, 16.00, 18.40) y <- c(1.8, 3.6, 5.4, 7.2, 9.0, 10.8, 12.6, 14.4, 16.2, 18.0, 19.8) plot( 阅读全文
posted @ 2021-09-01 16:20 小鲨鱼2018 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #include <stdlib.h> int main(void) { int ch; FILE * fp; char filename[128]; int lines; char tail; printf("please input the filen 阅读全文
posted @ 2021-08-29 18:52 小鲨鱼2018 阅读(1866) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <stdbool.h> int main(void) { int ch; char filename[128]; FILE * fp; bool word = 阅读全文
posted @ 2021-08-29 16:49 小鲨鱼2018 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #include <ctype.h> #include <stdbool.h> int main(void) { char ch; bool word = false; bool space = false; int words = 0; while((c 阅读全文
posted @ 2021-08-29 16:23 小鲨鱼2018 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #include <stdlib.h> int main(void) { int ch; FILE * fp; char filename[128]; int sum = 0; printf("please input filename: "); scan 阅读全文
posted @ 2021-08-28 23:43 小鲨鱼2018 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { char choice; printf("a) xxxx b) yyyy\n"); printf("c) zzzz q) quit.\n"); printf("input your choice: "); while((c 阅读全文
posted @ 2021-08-27 02:12 小鲨鱼2018 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #include <stdbool.h> long get_long(void); long square_sum(long num1, long num2); bool get_range(long start, long end, long lower 阅读全文
posted @ 2021-08-27 01:02 小鲨鱼2018 阅读(288) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> long get_long(void); int main(void) { long num; printf("please input an num: "); num = get_long(); printf("num: %ld.\n", num); retu 阅读全文
posted @ 2021-08-26 01:26 小鲨鱼2018 阅读(627) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main(void) { long num; printf("please input an positive num: "); while(1) { while(scanf("%ld", &num) != 1) { printf("please inp 阅读全文
posted @ 2021-08-26 01:06 小鲨鱼2018 阅读(310) 评论(0) 推荐(0) 编辑
上一页 1 ··· 242 243 244 245 246 247 248 249 250 ··· 367 下一页