|
去年学的C++ 现在忘记得一干二净了
现在有朋友要补考。
所以求助大家。
谢谢了
三、程序填空题
1.请补足完善以下程序,其功能是从键盘输入10个整数存入数组a中,调用fmax求数组中的最大值并输出。
#include <iostream.h>
int fmax(int b[],int size)
{
int max;
__________;
for(int y=1;_______;y++)
{
max=b[y]>max?________:_______;
}
return max;
}
void main()
{
const int n=10
int a[n],x,xmax;
for(x=0;x<n;x++)
{
cin>>a[x];
}
xmax=fmax(_____________,n);
cout<<xmax<<endl;
}
2.下面程序实现从键盘输入两个整数给x,y两个变量,并交换它们的值
#include<iostream.h>
void main()
{
int x,y,temp;
cin>>x
;
temp=
;
y =
;
=
;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
}
|
|