hdu 2007
Posted zhibin123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2007相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h> using namespace std; int main() { int m,n,s1 = 0,s2 = 0; while(scanf("%d %d",&m,&n)!=EOF){ s1 = s2 = 0; int mm; if(m > n){//题目没说m<n mm = m; m = n; n = mm; } for(int i = m;i <= n;i++){ if(i % 2){ s2 += i*i*i; }else{ s1 += i*i; } } printf("%d %d ",s1,s2); } return 0; }
以上是关于hdu 2007的主要内容,如果未能解决你的问题,请参考以下文章