码迷,mamicode.com
首页 >  
搜索关键字:hdu1202    ( 3个结果
hdu1202解题报告
#include<stdio.h>int main(){ int n,i; double sum,s,p,sum1; while(scanf("%d",&n)!=EOF) { sum=sum1=0;////////////////////记得要进行清零 for(i=0;i<n;i++) { scan ...
分类:其他好文   时间:2018-05-15 19:41:35    阅读次数:136
题解报告:hdu1202The calculation of GPA
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1202 水题!!!数据类型要用对,WA了三次 AC代码: ...
分类:其他好文   时间:2018-02-24 19:22:24    阅读次数:103
HDU1202 The calculation of GPA
#include double f(double p) { if(p >= 90) return 4; if(p >= 80) return 3; if(p >= 70) return 2; if(p >= 60) return 1; return 0; } int main() { int n; double s, p, sums,...
分类:其他好文   时间:2014-08-01 09:17:11    阅读次数:231
3条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!