#include<stdio.h>
struct men
{
int num;
char *name;
char sex;
float score;
}boy[5];
void input()
{
int i;
for(i=0;i<5;i++)
{
printf("Input the number:\n");
scanf("%d",&boy[i].num);
printf("Input the name:\n");
scanf("%s",boy[i].name);
printf("Input the sex:\n");
scanf("%c",&boy[i].sex);
printf("Input the score:\n");
scanf("%f",&boy[i].score);
}
}
void getout()
{
int i;
for(i=0;i<5;i++)
{
printf("NUM\t\t\tNAME\t\t\tSEX\t\t\tSCORE\n\n");
printf("%d\t\t\t",boy[i].num);
printf("%s\t\t\t",boy[i].name);
printf("%c\t\t\t",boy[i].sex);
printf("%.2f\n",boy[i].score);
}
}
main()
{
void input();
void getout();
input();
getout();
}
小妹菜鸟,用的是tc2.0编译,结果总是报错,显示scanf:floating point formats not linked Abnormal program termination.不知哪出的问题,请高手指点一二,真的不好意思,我只有20分,全加上了,谢谢了,
不行啊,四位大虾的方法额都试了,还是一到输入boy[i].sex以后就退出来了,各位再帮看看,拜托拜托,这厢有礼了^_^
还是解决不好,是不是我太笨了呀? ~-_-~
九州编程
相关分类