鱼C论坛

 找回密码
 立即注册
查看: 1269|回复: 3

[已解决]为什么我这个输入字符串出现了问题啊?

[复制链接]
发表于 2020-8-29 15:20:35 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include <stdio.h>
#include <string.h>
struct
{
        char name[10];
        int total;
}leader[3] = { {"ben",0},{"tony",0},{"hans",0} };
void main()
{
        int i;
        char names[20];
        do
        {
                printf("请输入一个名字,以便计票。\n");
                scanf_s("%s", names);
                for (i = 0; i < 3; i++)
                {
                        if (strcmp(names, leader[i].name) == 0)
                        {
                                leader[i].total++;
                        }
                        else
                        {
                                printf("error\n");
                        }
                }
        } while (names[0] != 32);
        for (i = 0; i < 3; i++)
        {
                printf("%s", leader[i].name);
                printf("%d\n", leader[i].total);
        }
}
最佳答案
2020-8-29 17:03:10
你的程序有几个问题,帮你修改了,并做了注释
另外,还有个地方帮你优化了,就是for循环内的if…else…,你写的这个if…else…会导致不管你输入的名字对不对,都至少会输出两次error

#include <stdio.h>
#include <string.h>
struct 
{
    char name[10];
    int total;
}leader[3] = { {"ben",0},{"tony",0},{"hans",0} };
void main()
{
    int i,flag;
    char names[20];
    do
    {
        flag=1;//用于判断输入的名字是否在名字列表内
        printf("请输入一个名字,以便计票。\n");
        scanf_s("%s", names,20);//问题1:这个函数在读取输入字符串的时候要写上读取长度,不知道现在的版本是否需要写上长度参数,若不需要的话,这一条就当我没说。
        for (i = 0; i < 3; i++)
        {
            if (strcmp(names, leader[i].name) == 0)
            {
                leader[i].total++;
                flag=0;
                break;
            }
        }
        if (flag && names[0] !=35)
            printf("error\n");
        getchar();//问题2:这里需要写上getchar()用来清除scanf遗留下来的回车字符
    } while (names[0] !=35);//问题3:这里不能以空格作为结束字符,因为空格在 scanf中很特殊,需要换成其他字符,我改成了'#'
    for (i = 0; i < 3; i++)
    {
        printf("%s", leader[i].name);
        printf("%d\n", leader[i].total);
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-29 16:44:22 | 显示全部楼层
#include <stdio.h>
#include <string.h>
struct
{
    char name[10];
    int total;
}leader[3] = { {"ben",0},{"tony",0},{"hans",0} };
void main()
{
    int i;
    char names[20];
    do
    {
        printf("请输入一个名字,以便计票。\n");
        scanf_s("%s", names,20);
        for (i = 0; i < 3; i++)
        {
            if (strcmp(names, leader[i].name) == 0)
            {
                leader[i].total++;
            }
            else
            {
                printf("error\n");
            }
        }
    } while (names[0] != 32);
    for (i = 0; i < 3; i++)
    {
        printf("%s", leader[i].name);
        printf("%d\n", leader[i].total);
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-29 16:52:18 | 显示全部楼层
本帖最后由 baige 于 2020-8-29 17:01 编辑

https://blog.csdn.net/qq_43309823/article/details/95386759?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-29 17:03:10 | 显示全部楼层    本楼为最佳答案   
你的程序有几个问题,帮你修改了,并做了注释
另外,还有个地方帮你优化了,就是for循环内的if…else…,你写的这个if…else…会导致不管你输入的名字对不对,都至少会输出两次error

#include <stdio.h>
#include <string.h>
struct 
{
    char name[10];
    int total;
}leader[3] = { {"ben",0},{"tony",0},{"hans",0} };
void main()
{
    int i,flag;
    char names[20];
    do
    {
        flag=1;//用于判断输入的名字是否在名字列表内
        printf("请输入一个名字,以便计票。\n");
        scanf_s("%s", names,20);//问题1:这个函数在读取输入字符串的时候要写上读取长度,不知道现在的版本是否需要写上长度参数,若不需要的话,这一条就当我没说。
        for (i = 0; i < 3; i++)
        {
            if (strcmp(names, leader[i].name) == 0)
            {
                leader[i].total++;
                flag=0;
                break;
            }
        }
        if (flag && names[0] !=35)
            printf("error\n");
        getchar();//问题2:这里需要写上getchar()用来清除scanf遗留下来的回车字符
    } while (names[0] !=35);//问题3:这里不能以空格作为结束字符,因为空格在 scanf中很特殊,需要换成其他字符,我改成了'#'
    for (i = 0; i < 3; i++)
    {
        printf("%s", leader[i].name);
        printf("%d\n", leader[i].total);
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-13 03:08

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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