上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 28 下一页

2012年8月3日

HDU 2007 平方和与立方和

摘要: 1 #include<stdio.h> 2 int main() 3 { 4 unsigned m,n,i,x,y; 5 while(scanf("%u%u",&m,&n)!=EOF) 6 { 7 if(m>n) 8 { 9 i=m;10 m=n;11 n=i;12 }13 x=y=0;14 for(i=m;i<=n;i++) 15 (i&1)?(y+=i*i*i):(x+=i*i);16 ... 阅读全文

posted @ 2012-08-03 17:52 mycapple 阅读(1582) 评论(0) 推荐(0) 编辑

HDU 2005 第几天?

摘要: 1 #include<stdio.h> 2 int main() 3 { 4 int year,month,day,i; 5 while(scanf("%d/%d/%d",&year,&month,&day)!=EOF) 6 { 7 i=0; 8 switch(month-1) 9 {10 case 11: i+=30;11 case 10: i+=31;12 case 9: i+=30;13 case 8... 阅读全文

posted @ 2012-08-03 17:50 mycapple 阅读(1443) 评论(0) 推荐(0) 编辑

HDU 2004 成绩转换

摘要: 1 #include<stdio.h> 2 int main() 3 { 4 int r; 5 while(scanf("%d",&r)!=EOF) 6 { 7 if(r<0) 8 puts("Score is error!"); 9 else if(r<60)10 puts("E");11 else if(r<70)12 puts("D");13 else if(r<80)14 puts("C");15 else i... 阅读全文

posted @ 2012-08-03 17:49 mycapple 阅读(400) 评论(0) 推荐(0) 编辑

HDU 2003 求绝对值

摘要: 1 #include <stdio.h> 2 #include<math.h> 3 int main() 4 { 5 double r; 6 while(scanf("%lf",&r)!=EOF) 7 printf("%.2lf\n",fabs(r)); 8 return 0; 9 }10 阅读全文

posted @ 2012-08-03 17:48 mycapple 阅读(419) 评论(0) 推荐(0) 编辑

HDU 2002 计算球体积

摘要: 1 #include<stdio.h>2 #define PI 3.14159273 int main()4 {5 double r;6 while(scanf("%lf",&r)!=EOF)7 printf("%.3lf\n",r/3*4*r*r*PI);8 return 0;9 } 阅读全文

posted @ 2012-08-03 17:47 mycapple 阅读(1012) 评论(0) 推荐(0) 编辑

HDU 2001 计算两点间的距离

摘要: 1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 double x1,y1,x2,y2,r; 6 while(scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2)!=EOF) 7 { 8 r=sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1)); 9 printf("%.2lf\n",r);10 }11 return 0;12 } 阅读全文

posted @ 2012-08-03 17:46 mycapple 阅读(1062) 评论(0) 推荐(0) 编辑

HDU 2033 人见人爱A+B

摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 int main() 4 { 5 int T; 6 int h,m,s,hh,mm,ss; 7 scanf("%d",&T); 8 while(T--) 9 {10 scanf("%d%d%d%d%d%d",&h,&m,&s,&hh,&mm,&ss);11 s+=ss;12 if(s>60)13 m++;s%=60;//减去一个数不如对它取余14 m+=mm;15 if(m... 阅读全文

posted @ 2012-08-03 17:45 mycapple 阅读(204) 评论(0) 推荐(0) 编辑

HDU 2032 杨辉三角

摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 int main() 5 { 6 int ret[50][50],i,j,n; 7 ret[1][1]=ret[2][1]=ret[2][2]=1; 8 for(i=3;i<=30;i++) 9 {10 for(j=2;j<=i-1;j++)11 {12 ret[i][j]=ret[i-1][j-1]+ret[i-1][j];13 }14 ret[... 阅读全文

posted @ 2012-08-03 17:25 mycapple 阅读(517) 评论(0) 推荐(0) 编辑

NYOJ 305 表达式求值

摘要: 法一: 1 #include<stdio.h> 2 #include<string.h> 3 #include<stdlib.h> 4 //这个表达式求值,要先算最小单元的数值,可以采用递归方式 5 char str[350];//使用全局数据保存字符串 6 int first;//字符当前位置 7 int min(int x,int y) 8 { 9 return x>y ? y:x;//返回比较小的数10 }11 int max(int x,int y)12 {13 return x>y ? x:y;//返回比较大的数14 }15 int f 阅读全文

posted @ 2012-08-03 16:38 mycapple 阅读(430) 评论(0) 推荐(0) 编辑

sscanf函数的用法

摘要: 函数原型: Int sscanf( const char * src, const char * format, ...);int scanf( const char * format, ...);这两个函数很相似,只是第一个函数以src作为输入,而第二个函数以标准输入STDIN读取输入;format 是格式控制字符串,它包含控制字符(如:%d,%i,%s等),空白字符(如:空格、制表符\t、回车换行符\n 或其连续组合)以及非空白字符;...是一组指针变量,是上述函数用来保存结果值的;返回值为被成功赋值的指针变量的个数,如果该函数发生错误,则返回EOF(-1)。 格式控制format: fo 阅读全文

posted @ 2012-08-03 15:12 mycapple 阅读(18197) 评论(0) 推荐(0) 编辑

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 28 下一页

导航