随笔分类 -  c/c++

上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 30 下一页
摘要:1、 #include <stdio.h> void del(char x[]) { int len = 0; while(x[len]) len++; char tmp[len]; int i = 0, j = 0; while(x[i]) { if(x[i] < '0' || x[i] > '9 阅读全文
posted @ 2021-05-27 17:28 小鲨鱼2018 阅读(91) 评论(0) 推荐(0)
摘要:c语言中大小写字符转换。 1、 #include <stdio.h> #include <ctype.h> void upper(char x[]) { int i = 0; while(x[i]) { x[i] = toupper(x[i]); i++; } } void lower(char x 阅读全文
posted @ 2021-05-27 17:02 小鲨鱼2018 阅读(2005) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> void put(char x[]) { int len = 0; while(x[len]) len++; int i; for(i = 0; i < len / 2; i++) { int tmp = x[i]; x[i] = x[len - 1 - 阅读全文
posted @ 2021-05-27 16:52 小鲨鱼2018 阅读(62) 评论(0) 推荐(0)
摘要:c语言中统计字符串中数字出现的次数。 1、 #include <stdio.h> void count(char x[], int y[]) { int i = 0; while(x[i]) { if(x[i] >= '0' && x[i] <= '9') y[x[i] - '0']++; i++; 阅读全文
posted @ 2021-05-27 16:22 小鲨鱼2018 阅读(1435) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> void put(char x[]) { int len = 0; while(x[len]) len++; while(len-- > 0) { putchar(x[len]); } } int main(void) { char str[128]; p 阅读全文
posted @ 2021-05-27 13:03 小鲨鱼2018 阅读(155) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> void put(char x[], int n) { int i; for(i = 0; i < n; i++) { printf("%s", x); } } int main(void) { char str[128]; printf("str: ") 阅读全文
posted @ 2021-05-27 12:51 小鲨鱼2018 阅读(73) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> int str_chnum(char x[], int key) { int len = 0; while(x[len]) len++; int j = 0; while(len-- > 0) { if(x[len] == key) j++; } if(j 阅读全文
posted @ 2021-05-27 12:11 小鲨鱼2018 阅读(74) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> int str_char(char x[], int key) { int len = 0; while(x[len]) len++; int i; for(i = 0; i < len; i++) { if(x[i] == key) return i; 阅读全文
posted @ 2021-05-27 11:25 小鲨鱼2018 阅读(93) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> void null_str(char x[]) { x[0] = '\0'; } int main(void) { char str[128]; printf("str: "); scanf("%s", str); null_str(str); puts( 阅读全文
posted @ 2021-05-27 11:09 小鲨鱼2018 阅读(65) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> #define NUMBER 5 int main(void) { char str[NUMBER][128]; int i; for(i = 0; i < NUMBER; i++) { printf("str[%d] = ", i); scanf("%s 阅读全文
posted @ 2021-05-27 10:14 小鲨鱼2018 阅读(67) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> void rev_str(char x[][128], int n) { int i; for(i = 0; i < n; i++) { int j = 0; while(x[i][j]) j++; while(j-- > 0) putchar(x[i][ 阅读全文
posted @ 2021-05-26 22:07 小鲨鱼2018 阅读(51) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> #define NUMBER 5 #define STR 128 void put(char x[][STR], int n) { int i; for(i = 0; i < n; i++) { if(strcmp(x[i], "$$$$$") == 0) 阅读全文
posted @ 2021-05-26 21:29 小鲨鱼2018 阅读(40) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> void del_dit(char x[]) { int i = 0, j = 0; char tmp[129]; while(x[i]) { if((x[i] - '0') < 0 || (x[i] - '0') > 9) { tmp[j] = x[i] 阅读全文
posted @ 2021-05-26 17:48 小鲨鱼2018 阅读(72) 评论(0) 推荐(0)
摘要:c语言中实现字符串大小写的转换。 1、 #include <stdio.h> #include <ctype.h> void str_toupper(char x[]) { int i = 0; while(x[i]) { x[i] = toupper(x[i]); i++; } } void st 阅读全文
posted @ 2021-05-26 16:52 小鲨鱼2018 阅读(2466) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> void rev_put(char x[]) { int i, len = 0; while(x[len]) len++; for(i = 0; i < len / 2; i++) { char tmp = x[i]; x[i] = x[len - 1 - 阅读全文
posted @ 2021-05-26 16:34 小鲨鱼2018 阅读(49) 评论(0) 推荐(0)
摘要:c语言中统计字符串中数字字符出现的次数。 1、 #include <stdio.h> void int_count(char x[], int cnt[]) { int i; while(x[i]) { if(x[i] >= '0' && x[i] <= '9') { cnt[x[i] - '0'] 阅读全文
posted @ 2021-05-26 16:06 小鲨鱼2018 阅读(1959) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> void put(char x[]) { int len = 0; while(x[len]) len++; int i = 0; while(x[i]) { putchar(x[len - 1 - i++]); } putchar('\n'); } in 阅读全文
posted @ 2021-05-26 13:13 小鲨鱼2018 阅读(73) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> void put(char x[], int n) { while(n-- > 0) printf(x); putchar('\n'); } int main(void) { char str[128]; int n; printf("str: "); s 阅读全文
posted @ 2021-05-26 12:34 小鲨鱼2018 阅读(65) 评论(0) 推荐(0)
摘要:c语言中使用putchar显示字符串 1、 #include <stdio.h> int put(char x[]) { int i = 0; while(x[i]) putchar(x[i++]); } int main(void) { char str[128]; printf("str: ") 阅读全文
posted @ 2021-05-26 12:23 小鲨鱼2018 阅读(434) 评论(0) 推荐(0)
摘要:1、 #include <stdio.h> int search(char x[], int c) { int i = 0, j = 0; while(1) { if(x[i] == c) { j++; } if(x[i] == '\0') break; i++; } return j == 0 ? 阅读全文
posted @ 2021-05-26 11:38 小鲨鱼2018 阅读(67) 评论(0) 推荐(0)

上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 30 下一页