问题描述
- 一个C语言初学者的疑问
-
我是一个初学者,希望各位大神能帮我看看这串代码错在哪了,我用的IDE是VS2013,编写C语言代码,拜托了
#include
#define N 3
struct Student
{
int num;
char name[20];
float score[3];
float aver;
};int main()
{
void input(struct Student stu[]);
struct Student max(struct Student stu[]);
void print(struct Student stu);
struct Student stu[N],*p=stu;
input(p);
print(max(p));
return 0;
}void input(struct Student stu[])
{
int i;
printf("请输入各学生的信息:学号,姓名,三门课成绩:n");
for (i = 0; i < N; i++)
{
scanf("%d %s %f %f %f", &stu[i].num, stu[i].name, &stu[i].score[0], &stu[i].score[1], &stu[i].score[2]);
stu[i].aver = (stu[i].score[0] + stu[i].score[1] + stu[i].score[2])/3.0;}
}
struct Student max(struct Student stu[])
{
int i, m = 0;
for (i = 0; i
if (stu[i].aver > stu[m].aver) m = i;
return stu[m];}
void print(struct Student stud)
{
printf("n成绩最高的学生是;n");
printf("学号:%dn姓名;%sn三门课成绩:%5.1f,%5.1f,%5.1fn平均成绩:%6.2fn", stud.num, stud.name, stud.score[0], stud.score[1], stud.score[2], stud.aver);
}
解决方案
代码错得太多了,参数中不要struct
函数原型定义不要放在main里面
函数的形参实参类型也不匹配
根本就是完全没概念,难道你的编程是和体育老师学的?
解决方案二:
写"#include "你是想引入头文件吗?这里的头文件好像缺一点.你可以尝试以下"#include "
解决方案三:
#include ,你都没有引用这个头文件吧。。。
解决方案四:
如果你要是c++编程,那么就需要引入,也就是说你的第一行需要改成“#include ”
如果要是用c语言,那么你至少需要"#include "
这样改下试试
解决方案五:
就现在你的代码来看,首先引入头文件就有问题,你要输入输出,就必须引入stdio.h这个头文件
解决方案六:
刚开头的“#include”,你没有引入头文件。可以在后面加上 stdio.h 用 <>包起来
解决方案七:
指针,地址等访问成员变量要用->来访问。
解决方案八:
你的这个问题出现在max函数中,对浮点数大小的判断。
给你一份改好的代码。
#include <stdio.h>
#define N 3
#pragma warning(disable:4996)
struct Student
{
int num;
char name[20];
float score[3];
float aver;
};
void input(struct Student stu[]);
struct Student max(struct Student stu[]);
void print(struct Student stu);
int main()
{
struct Student stu[N];
struct Student *p = stu;
input(p);
print(max(p));
return 0;
}
void input(struct Student stu[])
{
int i;
for (i = 0; i < N; i++)
{
printf("请输入学生 %d 的信息:学号,姓名,三门课成绩:n",i+1);
scanf("%d %s %f %f %f", &stu[i].num, stu[i].name, &stu[i].score[0],
&stu[i].score[1], &stu[i].score[2]);
stu[i].aver = (stu[i].score[0] + stu[i].score[1] + stu[i].score[2]) / 3.0;
}
}
struct Student max(struct Student stu[])
{
int i, m = 0;
for (int i = 0; i<N; i++)
{
if ((stu[i].aver - stu[m].aver)>0.0)
m = i;
}
return stu[m];
}
void print(struct Student stud)
{
printf("n成绩最高的学生是;n");
printf("学号:%dn姓名;%sn三门课成绩:%5.1f,%5.1f,%5.1fn平均成绩:%6.2fn",
stud.num, stud.name, stud.score[0], stud.score[1], stud.score[2], stud.aver);
}