HDU_2015——偶数求和

Problem Description
有一个长度为n(n<=100)的数列,该数列定义为从2开始的递增有序偶数,现在要求你按照顺序每m个数求出一个平均值,如果最后不足m个,则以实际数量求平均值。编程输出该平均值序列。
 
Input
输入数据有多组,每组占一行,包含两个正整数n和m,n和m的含义如上所述。
 
Output
对于每组输入数据,输出一个平均值序列,每组输出占一行。
 
Sample Input
3 2 4 2
 
Sample Output
3 6 3 7
 #include <cstdio>
int main()
{
int n,m,temp,ans;
while(~scanf("%d%d",&n,&m))
{
ans=;temp=;
for(int i=;i<=*n;i=i+)
{
ans=ans+i;;
temp++;
if(temp==m || i==*n)
{
printf(i==*n?"%d":"%d ",ans/temp);
ans=;temp=;
}
}
printf("\n");
}
return ;
}
上一篇:Qt5学习笔记(1)-环境配置(win+64bit+VS2013)


下一篇:DOM模型结构——节点类型