注意:此页面搜索的是所有试题
题目内容
(许昌学院面向对象程序设计)
[应用题,7.6分] 以下程序的功能是:从键盘上输入若干个学生的成绩,统计并输出最高成绩和最低成绩,当输入负数时结束,请填空。
#include
void main()
{
[ ];
cin>>x;
amax=x;
amin=x;
while([ ])
{
if(x>amax)
amax=x;
if([ ])
amin=x;
cin>>x;
}
cout<<"amax="<<amax<<", amin="<<><>
}
#include
void main()
{
[ ];
cin>>x;
amax=x;
amin=x;
while([ ])
{
if(x>amax)
amax=x;
if([ ])
amin=x;
cin>>x;
}
cout<<"amax="<<amax<<", amin="<<><>
}
参考答案