当前位置: 代码迷 >> C语言 >> [求助] 为何不能输入分数?百思不得其解!
  详细解决方案

[求助] 为何不能输入分数?百思不得其解!

热度:383   发布时间:2005-02-27 11:35:00.0
[求助] 为何不能输入分数?百思不得其解!

错在哪#include "stdio.h" #define N 5 struct student { long num; char name[10]; int age; float score[7]; float total; } stu[N]; main() { int i,j,max,k; FILE *fp; for(i=0;i<N;i++) {printf("please input number!"); scanf("%ld",&stu[i].num); printf("please input name"); scanf("%s",stu[i].name); printf("please input age"); scanf("%d",&stu[i].age); for(j=0;j<7;j++) { printf("please input score!"); }scanf("%f",&stu[i].score[j]); stu[i].total=0.0; for(j=0;j<7;j++); stu[i].total+=stu[i].score[j]; }

if((fp=fopen("c:\\student.dat","wb+"))==NULL) {printf("file can not open!"); getch(); exit(0); } fwrite(stu,sizeof(struct student),N,fp); fread(stu,sizeof(struct student),N ,fp); max=stu[0].total; k=0; for(i=0;i<N;i++) if(max<stu[i].total) {max=stu[i].total;k=i;}

printf("%-6ld%-10s%-5d%6.2f\n",stu[k].num,stu[k].name,stu[k].age,stu[k].total); getch(); }里?输入里面的问题!但为何错了呢?

搜索更多相关的解决方案: 输入  分数  百思不得其解  

----------------解决方案--------------------------------------------------------
提示: 该帖被管理员或版主屏蔽

泛出微微的蓝色的光,像有生命般涌动着,闪烁着,平滑而优美,达到了机械和美学结合的最高境界,向一件艺术品一样,默默的展示着,寂寞而孤傲,只有宇宙才能证实它的存在,只有永恒可以于它并存
2005-02-27 03:40:00
live41

等 级:贵宾
威 望:67
帖 子:12453
专家分:0
注 册:2004-7-22
  得分:0 
楼上的,干嘛?红颜祸水吗?你被贼用刀割了handhand不是女人的错啊!
----------------解决方案--------------------------------------------------------
我想帮,不过太久没看基础,还是等斑竹 k 某来搞定吧!
----------------解决方案--------------------------------------------------------
靠,这种问题还用想!你什么时候见过scanf能接受分数了!
----------------解决方案--------------------------------------------------------
靠,我用的是cin&gt;&gt;,不用scanf(),。。。不跟你口舌
----------------解决方案--------------------------------------------------------

神,你小学语文不及格?此分数不彼分数,此分数是此分数,彼分数是彼分数,两者不可混为一谈。 他的问题是scanf输入浮点数的问题,就是前几天你的问题,你来解答吧

PS:2楼的贴子因对女生大不敬被knocker封贴


----------------解决方案--------------------------------------------------------

点到为止: for(j=0;j<7;j++){ printf("please input score!"); } scanf("%f",&stu[i].score[j]);

这里

[此贴子已经被作者于2005-2-27 12:24:06编辑过]


----------------解决方案--------------------------------------------------------

难怪我说LIVE41能屏蔽我的帖子,原来是你小子

怎么,对我分你的橙子不满意啊!


----------------解决方案--------------------------------------------------------
for(j=0;j&lt;7;j++)
  {
   printf("please input score!");
  scanf("%f",&amp;stu[i].score[j]);
}
就是这一段有问题 ,前面的学号、姓名、年龄可以输入,到输入7课的分数就不行,这是为什么?
----------------解决方案--------------------------------------------------------
  相关解决方案