注意:此页面搜索的是所有试题
题目内容
(许昌学院面向对象程序设计)
[应用题,11.1分]
分别求出一批非零整数中的偶数、奇数的平均值,用零作
为终止标记。
#include
int main()
{
int x,i=0,j=0;
float s1=0,s2=0,av1,av2;
cin>>x;
while(【?】)
{
if(x%2==0) {s1=s1+x;i++;}
【?】
{
s2=s2+x;
j++;
}
【?】;
}
if(i!=0)
av1=s1/i;
else
av1=0;
if(j!=0)
【?】 ;
else
av2=0;
cout<<"oushujunzhi:"<<"jishujunzhi><><><>< p="">
return 0;
}
<><><>
分别求出一批非零整数中的偶数、奇数的平均值,用零作
为终止标记。
#include
int main()
{
int x,i=0,j=0;
float s1=0,s2=0,av1,av2;
cin>>x;
while(【?】)
{
if(x%2==0) {s1=s1+x;i++;}
【?】
{
s2=s2+x;
j++;
}
【?】;
}
if(i!=0)
av1=s1/i;
else
av1=0;
if(j!=0)
【?】 ;
else
av2=0;
cout<<"oushujunzhi:"<<"jishujunzhi><><><>< p="">
return 0;
}
<><><>
参考答案