gpt4 book ai didi

c - C 程序在 if 语句之前关闭

转载 作者:行者123 更新时间:2023-11-30 16:26:36 25 4
gpt4 key购买 nike

参数没有通过if语句运行,我不知道为什么。
在某些情况下,考虑到您对各大洲预期生命周期的估计,此程序应该为您提供“您还有多少年?”
您输入的参数是:年龄、大陆和性别。当我执行它时,我需要输入参数,然后它就停止工作。

#include<stdio.h>

int main(){
unsigned char gender,cont; //cont=Continent
char male,female,America,Oceania,Europe,Africa,Asia;
int age,le; //le=Life expectancy
printf("Insert Continent\n");
scanf("%s",&cont);
printf("Insert Gender\n");
scanf("%s",&gender);
printf("Insert Age\n");
scanf("%d",&age);

//for females
if (gender==female) {
if(cont==America) {
if(80-age<0) {
le=80-age;
printf("Outlived life expectancy by:\t",le);
} else {
le=80-age;
printf("You are expected to live ",le," more years");
}
}
if(cont==Oceania) {
if(80-age<0) {
le=80-age;
printf("Outlived life expectancy by:\t",le);
} else {
le=80-age;
printf("You are expected to live ",le," more years");
}
}
if(cont==Europe) {
if(82-age<0) {
le=82-age;
printf("Outlived life expectancy by:\t");
} else {
le=82-age;
printf("You are expected to live ",le," more years");
}
}
if(cont==Asia) {
if(74-age<0) {
le=74-age;
printf("Outlived life expectancy by:\t");
} else {
le=74-age;
printf("You are expected to live ",le," more years");
}
}
if(cont==Africa) {
if(64-age<0) {
le=64-age;
printf("Outlived life expectancy by:\t");
} else {
le=64-age;
printf("You are expected to live ",le," more years");
}
}
}
return 0;
}

最佳答案

您将整个字符串存储在内存中,而您只分配了一个字符。这是“缓冲区溢出”并导致未定义的行为。

不要将它们分配为单个字符(类型 char),而是尝试将它们分配为字符数组(例如,unsigned char cont[128];)。我还建议使用 fgets() 进行字符串输入,而不是使用带有 %s 说明符的 scanf()

此外,不要使用 cont == America 来比较字符串。 strcmp() 函数是完成这项工作的正确工具。

最后,您永远不要将此处使用的变量定义为常量(例如 America)。您需要定义 America (变量)(可能为 "America")或直接将 cont 与您正在测试的字符串进行比较(再次,也许“美国”)

int main(void) {
const unsigned char *America="America";
unsigned char cont[128];
...
fgets(cont, 128, stdin);
...
if (strcmp(cont, America) == 0) {
...
}
...
}

关于c - C 程序在 if 语句之前关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53013652/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com