摘要:
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
阅读(60)
评论(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
阅读(1420)
评论(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
阅读(150)
评论(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
阅读(69)
评论(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
阅读(70)
评论(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
阅读(90)
评论(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
阅读(64)
评论(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
阅读(61)
评论(0)
推荐(0)