平方和与立方和 链接:http://acm.hdu.edu.cn/showproblem.php?pid=2007 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 209251 Accepted Submission(s): 66420 Problem Description 给定一段连续的整数,求出他们中所有偶数的平方和以及所有奇
平方和与立方和 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 109261 Accepted Submission(s): 35235 Problem Description 给定一段连续的整数,求出他们中所有偶数的平方和以及所有奇数的立方和. Input 输入数据包含多组测试实例,每组测试实例包含一行,由两个整数m和n组成.
应该注意到一个细节是题目中没有说明输入的两个数据一定是先小后大的关系,所以需要做一次判断.其他的比较简单. HDOJ2007_平方和与立方和 #include<iostream> #include<string> #include<stdio.h> #include<stdlib.h> #include<ctype.h> using namespace std; int j_sum[100005]={0}; int o_sum[100005]={
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2007 //坑:注意判断输入两个数的前后大小关系 // 用while 循环 #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> using namespace std; int main() { int m,n; long long sum1,sum2; while(sca
#include <stdio.h>int main(){ int a, b, m , n, t; while( scanf("%d %d", &a, &b) != EOF ){ if( a > b ) { t = a; a = b; b = t; } m = n = 0; for( ; a <= b; a ++ ) { if( a % 2 == 0 ) m += a * a
#include<iostream> #include<algorithm> using namespace std; int main() { int m, n; while (cin >> m && cin >> n) { if (m > n) swap(m, n); , even_sum = ; for (int i = m;i <= n;i++) { == ) { even_sum += i * i; } else { o