结构体
#include<stdio.h>#include<string.h>
#define add struct addresslist
void inquire(char name1)
{
int b=0;
for(b;b<50;b++)
{
/*9*/ if(strcmp(person.name,name1)==0)
/*10*/ printf("年龄:%d\n电话:%d",person.year,person.phone);
if(b==50)
{
printf("查无此人");
}
}
}
struct addresslist
{
char name;
int year;
int phone;
}person={"小红",19,15826211111,"小明",18,13666666666},*p;
int main()
{
int a,b,c=2,d,e=1;
char name1;
printf("\t手机通讯录\n");
printf("是否查询通讯人(查询请按1,不查询请按2)");
scanf("%d",&a);
if(a==1)
{
printf("请输入通讯人名字:");
gets(name1);
inquire(name1);
}
printf("是否新建联系人?(是请按1,不是请按2)");
scanf("%d",&b);
if(b==1)
{
for(c;c<50;c++)
{
printf("请输入名字:");
scanf("%s",person.name);
printf("\n请输入年龄:");
scanf("%d",person.year);
printf("\n请输入电话:");
scanf("%d",person.phone);
printf("\n已经建立一个新的联系人(是否还要再建立联系人?(要请输入1,不要请输入2))\n");
scanf("%d",&d);
if(d==2)
{
e++;
break;
}
}
if(e>1)
{
printf("你已经成功新建联系人,现在手机新添联系人有:\n");
for(e;(e<50)&&(person.name);e++)
printf("姓名;%s\n",person.name);
printf("年龄:%d\n",person.year);
printf("电话:%d",person.phone);
}
}
return 0;
}
这是设计一个手机通讯录,最多容纳50人的基本信息,姓名,电话,年龄,通讯录还具有新建和查询功能。我输入的/*9*/行和下面一行都报错说person是未声明标识符。我前面不是有一个person吗? 编译器说你错了,那肯定就是你错了,没有商量的余地,这时候最好的做法就是认真检查你的代码
#include<stdio.h>
#include<string.h>
#define add struct addresslist
struct addresslist
{
char name;
int year;
int phone;
}person={"小红",19,15826211111,"小明",18,13666666666},*p;
void inquire(char name1)
{
int b=0;
for(b;b<50;b++)
{
/*9*/ if(strcmp(person.name,name1)==0)
/*10*/ printf("年龄:%d\n电话:%d",person.year,person.phone);
if(b==50)
{
printf("查无此人");
}
}
}
int main()
{
int a,b,c=2,d,e=1;
char name1;
printf("\t手机通讯录\n");
printf("是否查询通讯人(查询请按1,不查询请按2)");
scanf("%d",&a);
if(a==1)
{
printf("请输入通讯人名字:");
gets(name1);
inquire(name1);
}
printf("是否新建联系人?(是请按1,不是请按2)");
scanf("%d",&b);
if(b==1)
{
for(c;c<50;c++)
{
printf("请输入名字:");
scanf("%s",person.name);
printf("\n请输入年龄:");
scanf("%d",person.year);
printf("\n请输入电话:");
scanf("%d",person.phone);
printf("\n已经建立一个新的联系人(是否还要再建立联系人?(要请输入1,不要请输入2))\n");
scanf("%d",&d);
if(d==2)
{
e++;
break;
}
}
if(e>1)
{
printf("你已经成功新建联系人,现在手机新添联系人有:\n");
for(e;(e<50)&&(person.name);e++)
printf("姓名;%s\n",person.name);
printf("年龄:%d\n",person.year);
printf("电话:%d",person.phone);
}
}
return 0;
}
另外,编译器还说你有这么多的问题
$ gcc -O3 -g -Wall -o main main.c
main.c:10:26: warning: overflow in conversion from ‘long int’ to ‘int’ changes value from ‘15826211111’ to ‘-1353658073’ [-Woverflow]
10 | }person={"小红",19,15826211111,"小明",18,13666666666},*p;
| ^~~~~~~~~~~
main.c:10:50: warning: overflow in conversion from ‘long int’ to ‘int’ changes value from ‘13666666666’ to ‘781764778’ [-Woverflow]
10 | }person={"小红",19,15826211111,"小明",18,13666666666},*p;
| ^~~~~~~~~~~
main.c:10:13: warning: missing braces around initializer [-Wmissing-braces]
10 | }person={"小红",19,15826211111,"小明",18,13666666666},*p;
| ^
| { }{ }
main.c: In function ‘inquire’:
main.c:15:5: warning: statement with no effect [-Wunused-value]
15 | for(b;b<50;b++)
| ^~~
main.c: In function ‘main’:
main.c:43:9: warning: statement with no effect [-Wunused-value]
43 | for(c;c<50;c++)
| ^~~
main.c:48:21: warning: format ‘%d’ expects argument of type ‘int *’, but argument 2 has type ‘int’ [-Wformat=]
48 | scanf("%d",person.year);
| ~^~~~~~~~~~~~~~~
| | |
| int * int
main.c:50:21: warning: format ‘%d’ expects argument of type ‘int *’, but argument 2 has type ‘int’ [-Wformat=]
50 | scanf("%d",person.phone);
| ~^~~~~~~~~~~~~~~~
| | |
| int * int
main.c:62:13: warning: statement with no effect [-Wunused-value]
62 | for(e;(e<50)&&(person.name);e++)
| ^~~
main.c:64:40: warning: array subscript 50 is above array bounds of ‘struct addresslist’ [-Warray-bounds]
64 | printf("年龄:%d\n",person.year);
| ~~~~~~^~~
main.c:10:2: note: while referencing ‘person’
10 | }person={"小红",19,15826211111,"小明",18,13666666666},*p;
|^~~~~~
main.c:65:38: warning: array subscript 50 is above array bounds of ‘struct addresslist’ [-Warray-bounds]
65 | printf("电话:%d",person.phone);
| ~~~~~~^~~
main.c:10:2: note: while referencing ‘person’
10 | }person={"小红",19,15826211111,"小明",18,13666666666},*p;
|^~~~~~
人造人 发表于 2021-3-6 15:34
另外,编译器还说你有这么多的问题
warning到不用管,我是这么看到 严凯 发表于 2021-3-6 19:35
warning到不用管,我是这么看到
warning怎么能不管呢?编译器说你有可能出问题了,那么你就真的很有可能出问题了
main.c:50:21: warning: format ‘%d’ expects argument of type ‘int *’, but argument 2 has type ‘int’ [-Wformat=]
50 | scanf("%d",person.phone);
这对吗 ?
scanf("%d",person.phone); 本帖最后由 人造人 于 2021-3-6 19:57 编辑
编译器说%d要一个int *, 你给的是一个 int
难道不应该是这样吗?
scanf("%d", &person.phone);
总结:不要忽略编译器对你说的任何话
编译器对你说了什么,你应该感到高兴,因为编译器帮你检查出问题了,如果编译器一声不吭,可不见得是件好事
本帖最后由 墙里秋千墙外荡 于 2021-3-6 21:06 编辑
struct addresslist
{
char name;
int year;
int phone;
}person={"小红",19,15826211111,"小明",18,13666666666},*p;
把这段代码放到函数inquire(char name1)前面
编译器是按顺序编译的,如果定义在后,使用在前就会出现这种情况,不是说你定义了就行。 人造人 发表于 2021-3-6 15:34
另外,编译器还说你有这么多的问题
出现错误,先修改第一个错误,其他错误可能都是第一个错误导致的,修改了第一个,后面的部分错误可能也解决了。 墙里秋千墙外荡 发表于 2021-3-6 21:11
出现错误,先修改第一个错误,其他错误可能都是第一个错误导致的,修改了第一个,后面的部分错误可能也解 ...
嗯,我同意你的观点,^_^ 人造人 发表于 2021-3-6 21:19
嗯,我同意你的观点,^_^
额,哪个我试了一下,现在就是查询的时候,我按了1之后,就表示我要查询,我后面有一个gets(name1),没有起到作用,按了1之后,就输出很多年龄0,电话0,这是一个问题,还有一个就是,我先不查询,先新建联系人,当我已经输入姓名,年龄之后,要输入电话的时候,程序就自动结束了。 人造人 发表于 2021-3-6 21:19
嗯,我同意你的观点,^_^
看不懂电脑的警告,就知道大概它在警告哪里 严凯 发表于 2021-3-7 10:30
额,哪个我试了一下,现在就是查询的时候,我按了1之后,就表示我要查询,我后面有一个gets(name1),没有 ...
把你现在的代码贴出来 人造人 发表于 2021-3-7 10:51
把你现在的代码贴出来
#include<stdio.h>
#include<string.h>
#define add struct addresslist
struct addresslist
{
char name;
int year;
int phone;
}person={"小红",19,15826211111,"小明",18,13666666666},*p;
void inquire(char name1)
{
int b=0;
for(b;b<50;b++)
{
if(strcmp(person.name,name1)==0)
printf("年龄:%d\n电话:%d",person.year,person.phone);
if(b==50)
{
printf("查无此人");
}
}
}
int main()
{
int a,b,c=2,d,e=1;
char name1;
printf("\t手机通讯录\n");
printf("是否查询通讯人(查询请按1,不查询请按2)");
scanf("%d",&a);
if(a==1)
{
printf("请输入通讯人名字:");
gets(name1);
inquire(name1);
}
printf("是否新建联系人?(是请按1,不是请按2)");
scanf("%d",&b);
if(b==1)
{
for(c;c<50;c++)
{
printf("请输入名字:");
scanf("%s",person.name);
printf("\n请输入年龄:");
scanf("%d",person.year);
printf("\n请输入电话:");
scanf("%d",person.phone);
printf("\n已经建立一个新的联系人(是否还要再建立联系人?(要请输入1,不要请输入2))\n");
scanf("%d",&d);
if(d==2)
{
e++;
break;
}
}
if(e>1)
{
printf("你已经成功新建联系人,现在手机新添联系人有:\n");
for(e;(e<50)&&(person.name);e++)
printf("姓名;%s\n",person.name);
printf("年龄:%d\n",person.year);
printf("电话:%d",person.phone);
}
}
return 0;
} 严凯 发表于 2021-3-7 12:56
#include
#include
#define add struct addresslist
你就没有修改编译器指出的问题吧,这怎么可能正确?
scanf("%d",person.phone);
scanf函数是这样用的吗?
页:
[1]