| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 471 人关注过本帖
标题:[求助] 为什么会出现这样的结果?
只看楼主 加入收藏
g123x
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2006-8-10
收藏
 问题点数:0 回复次数:2 
[求助] 为什么会出现这样的结果?
请高手指点一二,谢谢啊
出错提示为:
error C2601: 'main' : local function definitions are illegal
fatal error C1004: unexpected end of file found
感觉也没少大括号啊;

程序如下:
#include<iostream.h>
#include<stdio.h>
#include<string.h>
#define N 10
int count=5;
void px();//将均分由高到低输出
double ave_score();//计算均分
struct student{
char *name;//姓名
int num;//学号
int score[3];//三门课的分数
double PJ;//均分
}stu[N];
double ave_score(int a[3])
{
int s=0;
for(int i=0;i<3;i++)
s+=a[i];
s=s/3;
return s;}
void px() {
int n;
for(int i=0;i<count-1;i++){
double m=stu[i].PJ;
for(int j=i+1;j<count;j++){
if(m<stu[j].PJ)
{m=stu[j].PJ;
n=j;
}
cout<<stu[n].name<<endl<<stu[n].num<<endl<<stu[n].PJ<<endl;
stu[n].PJ=stu[i].PJ;
stu[n].name=stu[i].name;
stu[n].num=stu[i].num;}
}
void main() {
for(int i=0;i<count;i++)
{
cout<<"请输入学号:";
cin>>stu[i].num;
cout<<endl;
cout<<"输入姓名:";
stu[i].name=new char[33];
cin>>stu[i].name;
cout<<endl;
for(int j=0;j<3;j++)
{cout<<"输入第"<<j+1<<"门成绩";
cin>>stu[i].score[j];
cout<<endl;
}
cout<<"三门成绩的平均分是:"<<ave_score(stu[i].score)<<endl;
stu[i].PJ=ave_score(stu[i].score);
}
px();
}
搜索更多相关主题的帖子: 结果 
2006-08-23 17:25
wfpb
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:2188
专家分:0
注 册:2006-4-2
收藏
得分:0 
程序如下:
#include<iostream.h>
#include<stdio.h>
#include<string.h>
#define N 10
int count=5;
void px();//将均分由高到低输出
double ave_score();//计算均分
struct student{
char *name;//姓名
int num;//学号
int score[3];//三门课的分数
double PJ;//均分
}stu[N];
double ave_score(int a[3])
{
int s=0;
for(int i=0;i<3;i++)
s+=a[i];
s=s/3;
return s;}
void px() {
int n;
for(int i=0;i<count-1;i++){
double m=stu[i].PJ;
for(int j=i+1;j<count;j++){
if(m<stu[j].PJ)
{m=stu[j].PJ;
n=j;
}
cout<<stu[n].name<<endl<<stu[n].num<<endl<<stu[n].PJ<<endl;
stu[n].PJ=stu[i].PJ;
stu[n].name=stu[i].name;
stu[n].num=stu[i].num;}
}
}
void main() {
for(int i=0;i<count;i++)
{
cout<<"请输入学号:";
cin>>stu[i].num;
cout<<endl;
cout<<"输入姓名:";
stu[i].name=new char[33];
cin>>stu[i].name;
cout<<endl;
for(int j=0;j<3;j++)
{cout<<"输入第"<<j+1<<"门成绩";
cin>>stu[i].score[j];
cout<<endl;
}
cout<<"三门成绩的平均分是:"<<ave_score(stu[i].score)<<endl;
stu[i].PJ=ave_score(stu[i].score);
}
px();
}

[此贴子已经被作者于2006-8-23 18:01:43编辑过]


[glow=255,red,2]wfpb的部落格[/glow] 学习成为生活的重要组成部分!
2006-08-23 17:56
g123x
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2006-8-10
收藏
得分:0 
谢谢 这位大哥 问题解决了 我好好好向你学习。
2006-08-24 11:11
快速回复:[求助] 为什么会出现这样的结果?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.026048 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved