华东交通大学C++2010(4)
发布时间:2021-06-09
发布时间:2021-06-09
cout<<x<<”,”<<y<<”,”<<z<<endl;
}
void fun(int a,int b,int *c)
{
b+=a;
*c=b-a;
}
7.运行程序后,输出结果
#include<iostream.h>
int &fl(int n,int s[])
{
int &m=s[n];
return m;
}
void main()
{
int s[]={5,4,3,2,1,O};
f1(3,s)=10;
//引用作为函数返回值时,该函数调用可作为赋值语句的左边值。
cout<<s[3]<<endl;
}
三、程序填空题(共5分)
1.程序读入20个整数,统计非负数个数,并计算非负数之和。
#include <iostream.h>
void main()
{
int i,a[20],s=0,count=0;
for(i = 0;i<20;i++) (1)
for(i = 0;i<20;i++)
{
if(a[i] < 0) (2) (3)
}
cout<<s<<’\t’<<count;
}
四、编程题(每题10分,共20分)
1.编写程序,从键盘输入一个大写英文字母,输出对应的小写字母。(提示:小写字母的ASCII码值比大写字母的ASCII值大32)