标签:32位 包括 scan 数据包 编程 log style 处理 pid
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12246707.html
1.平方和与立方和(21min)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2007
#include<stdio.h> #include<math.h> int main(void) { int m; int n; int i; while(~scanf("%d %d",&m,&n)) { int x=0; int y=0; int temp; if(m>n) { temp=m; m=n; n=temp; } for(i=m;i<=n;i++) if(i%2==0) x=x+i*i; else y=y+i*i*i; printf("%d %d\n",x,y); } return 0; }
2.数值统计(23min)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2008
#include<stdio.h> #include<math.h> int main(void) { int n; int i; while(1) { double m[100]={0.0}; scanf("%d",&n); if(n==0) break; else{ for(i=0;i<n;i++) scanf("%lf",&m[i]); int zero=0; int R=0; int F=0; for(i=0;i<n;i++) if(m[i]<0) F++; else if(m[i]>0) R++; else zero++; printf("%d %d %d\n",F,zero,R); } } return 0; }
标签:32位 包括 scan 数据包 编程 log style 处理 pid
原文地址:https://www.cnblogs.com/ping2yingshi/p/12246707.html