上一页 1 ··· 279 280 281 282 283 284 285 286 287 ··· 403 下一页
摘要: 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 阅读(325) 评论(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 阅读(681) 评论(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 阅读(397) 评论(0) 推荐(0)
摘要: 测试程序1: #include <stdio.h> int main(void) { char ch; printf("please input an character: \n"); while((ch = getchar()) != '#') printf("xxx\n"); return 0; 阅读全文
posted @ 2021-08-25 23:07 小鲨鱼2018 阅读(430) 评论(0) 推荐(0)
摘要: c语言中使用程序读取文件。 #include <stdio.h> #include <stdlib.h> int main() { int ch; FILE * fp; char fname[50]; printf("enter the name of the file: "); scanf("%s 阅读全文
posted @ 2021-08-25 01:31 小鲨鱼2018 阅读(627) 评论(0) 推荐(0)
摘要: 1、 #include <stdio.h> #include <ctype.h> int main(void) { char ch; int n_space = 0, n_lines = 0, n_other = 0; while((ch = getchar()) != '#') { if(ch = 阅读全文
posted @ 2021-08-23 00:25 小鲨鱼2018 阅读(125) 评论(0) 推荐(0)
摘要: 1、 #include <stdio.h> #include <ctype.h> #include <stdbool.h> #define STOP '|' int main(void) { char ch; char prep; long n_ch = 0L; int n_lines = 0; i 阅读全文
posted @ 2021-08-22 15:26 小鲨鱼2018 阅读(437) 评论(0) 推荐(0)
摘要: 1、 #include <stdio.h> #define STOP '|' int main(void) { char ch; int chnum = 0; int lines = 0; while((ch = getchar()) != STOP) { if(ch != '\n') chnum+ 阅读全文
posted @ 2021-08-22 12:41 小鲨鱼2018 阅读(910) 评论(0) 推荐(0)
摘要: 1、 #include <stdio.h> int main(void) { char ch; ch = getchar(); while(ch != '\n') { if(ch == ' ') { putchar(ch); } else { putchar(ch + 1); } ch = getc 阅读全文
posted @ 2021-08-21 20:36 小鲨鱼2018 阅读(956) 评论(0) 推荐(0)
摘要: 1、 #include <stdio.h> #define NUM 26 int main(void) { char letters[NUM]; int i; for(i = 0; i < NUM; i++) { letters[i] = 'a' + i; } for(i = 0; i < NUM; 阅读全文
posted @ 2021-08-16 00:16 小鲨鱼2018 阅读(73) 评论(0) 推荐(0)
上一页 1 ··· 279 280 281 282 283 284 285 286 287 ··· 403 下一页