| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 784 人关注过本帖
标题:[求助]这个程序怎么样才能average=三个score相加的平均值
取消只看楼主 加入收藏
autumnluo
Rank: 1
等 级:新手上路
帖 子:40
专家分:0
注 册:2005-12-7
收藏
 问题点数:0 回复次数:0 
[求助]这个程序怎么样才能average=三个score相加的平均值

#include<iostream.h>
#include<stdio.h>

struct student
{
int num;
char name[20];
float score[3];
float average[1];
};
void main()
{

student stud[1];
for(int i=0;i<1;i++)

{ cout<<"please enter the number:";
cin>>stud[i].num;
cout<<"please enter the name:";
cin>>stud[i].name;
for(int j=0;j<3;j++)
{cout<<"please enter the score:";
cin>>stud[i].score[j];}
stud[i].average[i]=(stud[i].score[0]+stud[i].score[1]+stud[i].score[2])/3;}
printf("name=%s\tscore=%f",stud[i].name,stud[i].score);
printf("average=%.1f",stud[i].average[i]);

}


这一段好像没有运算,怎么回事?stud[i].average[i]=(stud[i].score[0]+stud[i].score[1]+stud[i].score[2])/3;}

搜索更多相关主题的帖子: score average 平均值 相加 
2006-03-28 09:07
快速回复:[求助]这个程序怎么样才能average=三个score相加的平均值
数据加载中...
 
   



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

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