鱼C论坛

 找回密码
 立即注册
查看: 3815|回复: 7

[已解决]文章检索

[复制链接]
发表于 2022-11-17 23:32:35 | 显示全部楼层 |阅读模式
3鱼币
如何不用gets()函数完成.
最佳答案
2022-11-17 23:32:36
算了,我照着图片抄上一遍吧
但是,你直接复制粘贴,我直接复制粘贴不是更好?
sh-5.1$ ls
main.c
sh-5.1$ cat main.c
#include <stdio.h>

int main(void) {
    size_t count[256] = {0};
    int ch;
    while((ch = getchar()) != EOF) ++count[ch];
    size_t result[4] = {0};
    for(size_t i = 'A'; i <= 'Z'; ++i) result[0] += count[i];
    for(size_t i = 'a'; i <= 'z'; ++i) result[1] += count[i];
    for(size_t i = '0'; i <= '9'; ++i) result[2] += count[i];
    for(size_t i = 0; i <= 255; ++i) result[3] += count[i];
    result[3] -= result[0] + result[1] + result[2] + count[' '];
    printf("%zu %zu %zu %zu %zu\n", result[0], result[1], result[2], count[' '], result[3]);
    return 0;
}
sh-5.1$ gcc -g -Wall -o main main.c
sh-5.1$ ls
main  main.c
sh-5.1$ ./main
Nikon at the frontiers of science.
Flash(Adobe Flash Media Rights Management Server)
21.03,-0.87,-3.97%
8 62 10 10 14
sh-5.1$
屏幕截图 2022-11-17 233040.png

最佳答案

查看完整内容

算了,我照着图片抄上一遍吧 但是,你直接复制粘贴,我直接复制粘贴不是更好?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-11-17 23:32:36 | 显示全部楼层    本楼为最佳答案   
算了,我照着图片抄上一遍吧
但是,你直接复制粘贴,我直接复制粘贴不是更好?
sh-5.1$ ls
main.c
sh-5.1$ cat main.c
#include <stdio.h>

int main(void) {
    size_t count[256] = {0};
    int ch;
    while((ch = getchar()) != EOF) ++count[ch];
    size_t result[4] = {0};
    for(size_t i = 'A'; i <= 'Z'; ++i) result[0] += count[i];
    for(size_t i = 'a'; i <= 'z'; ++i) result[1] += count[i];
    for(size_t i = '0'; i <= '9'; ++i) result[2] += count[i];
    for(size_t i = 0; i <= 255; ++i) result[3] += count[i];
    result[3] -= result[0] + result[1] + result[2] + count[' '];
    printf("%zu %zu %zu %zu %zu\n", result[0], result[1], result[2], count[' '], result[3]);
    return 0;
}
sh-5.1$ gcc -g -Wall -o main main.c
sh-5.1$ ls
main  main.c
sh-5.1$ ./main
Nikon at the frontiers of science.
Flash(Adobe Flash Media Rights Management Server)
21.03,-0.87,-3.97%
8 62 10 10 14
sh-5.1$
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-11-17 23:35:59 | 显示全部楼层
发一下样例输入
要可以复制粘贴的那种
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2022-11-17 23:41:59 | 显示全部楼层
人造人 发表于 2022-11-17 23:35
发一下样例输入
要可以复制粘贴的那种

$ gcc -std=c99 test23.1.c && ./a.out
test23.1.c: 在函数‘main’中:
test23.1.c:8:5: 警告:不建议使用‘gets’(声明于 /usr/include/stdio.h:638) [-Wdeprecated-declarations]
     gets(str);
     ^
/tmp/cc1Is4My.o:在函数‘main’中:
test23.1.c:(.text+0x58): 警告:the `gets' function is dangerous and should not be used.
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-11-17 23:50:48 | 显示全部楼层
hamletroy 发表于 2022-11-17 23:41
$ gcc -std=c99 test23.1.c && ./a.out
test23.1.c: 在函数‘main’中:
test23.1.c:8:5: 警告:不建议 ...

?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-11-17 23:52:35 | 显示全部楼层
hamletroy 发表于 2022-11-17 23:41
$ gcc -std=c99 test23.1.c && ./a.out
test23.1.c: 在函数‘main’中:
test23.1.c:8:5: 警告:不建议 ...

把  “Sample Input” 这个后面的框框里面的内容,复制粘贴上来
我需要复制粘贴那个框框里面的内容,用来测试程序
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-11-17 23:59:46 | 显示全部楼层
也就是说不算3个换行符
sh-5.1$ ls
main.c
sh-5.1$ cat main.c
#include <stdio.h>

int main(void) {
    size_t count[256] = {0};
    int ch;
    while((ch = getchar()) != EOF) ++count[ch];
    size_t result[4] = {0};
    for(size_t i = 'A'; i <= 'Z'; ++i) result[0] += count[i];
    for(size_t i = 'a'; i <= 'z'; ++i) result[1] += count[i];
    for(size_t i = '0'; i <= '9'; ++i) result[2] += count[i];
    for(size_t i = 0; i <= 255; ++i) result[3] += count[i];
    result[3] -= result[0] + result[1] + result[2] + count[' '] + 3;
    printf("%zu %zu %zu %zu %zu\n", result[0], result[1], result[2], count[' '], result[3]);
    return 0;
}
sh-5.1$ gcc -g -Wall -o main main.c
sh-5.1$ ./main
Nikon at the frontiers of science.
Flash(Adobe Flash Media Rights Management Server)
21.03,-0.87,-3.97%
8 62 10 10 11
sh-5.1$
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2022-11-18 08:10:24 | 显示全部楼层
人造人 发表于 2022-11-17 23:57
算了,我照着图片抄上一遍吧
但是,你直接复制粘贴,我直接复制粘贴不是更好?

不好意思,我理解错了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-25 03:41

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表