| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 525 人关注过本帖
标题:问一个问题
取消只看楼主 加入收藏
evil_evil
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2006-3-4
收藏
 问题点数:0 回复次数:3 
问一个问题
#include <stdio.h>
main()
{
struct student
{ char num[10];
char name[10];
char sex;
float english;
float computer;
float math;
float total;
float average;
};
struct student per[10];
int i;
for(i=0;i<=9;i++)
{
printf("第%d个同学\n",i+1);
printf("please input the num:");
scanf("%s",per[i].num);
printf("please input the name:");
scanf("%s",per[i].name);
printf("please input the sex M or F:");
scanf(" %c",&per[i].sex); /*为什么%c前的空格不可少*/
printf("please input the english score:");
scanf("%f",&per[i].english);
printf("please input the computer score:");
scanf("%f",&per[i].computer);
printf("please input the math score:");
scanf("%f",&(per[i].math));
per[i].total=per[i].english+per[i].computer+per[i].math;
per[i].average=per[i].total/3;
}
for(i=0;i<=9;i++)
{
printf("%s,%s,%c,%f,%f,%f,%f,%f\n",per[i].num,per[i].name,per[i].sex,per[i].english,per[i].computer,per[i].math,per[i].total,per[i].average);
}
}
搜索更多相关主题的帖子: include please 
2006-03-26 11:36
evil_evil
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2006-3-4
收藏
得分:0 

但在我上面的程序中如果少了空格就有问题了,如果你试试就会知道有空格和没空格的分别!!!!!


潜水员!
2006-03-26 12:53
evil_evil
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2006-3-4
收藏
得分:0 
明了,感激....

潜水员!
2006-03-26 13:12
evil_evil
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2006-3-4
收藏
得分:0 

我用的是VC++6.0,程序没问题的


潜水员!
2006-03-26 17:31
快速回复:问一个问题
数据加载中...
 
   



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

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