首页 > 代码库 > 杭电2061WA 01
杭电2061WA 01
#include<stdio.h>struct mem{ char s[50]; double c; double f;};int main(){ struct mem x[60]; int n; int num,i,flag;//num为课程数量 scanf("%d",&n); while(n--) { double sum1=0,sum2=0,gpa; scanf("%d",&num); for(i=0;i<num;i++) { scanf("%s",x[i].s); scanf("%lf",&x[i].c); scanf("%lf",&x[i].f); } for(i=0;i<num;i++) { if(x[i].f>=0&&x[i].f<60) { printf("Sorry!\n"); flag=0; break; } else { sum1+=x[i].c*x[i].f; sum2+=x[i].c; } } if(flag) { gpa=(sum1*1.0)/sum2; printf("%.2lf\n",gpa); } if(n<=1) { printf("\n"); } }}
找不出错误在哪,待解决
杭电2061WA 01
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。