本科实验报告
课程名称: C++面向对象程序设计
实验项目: C++语言编程
实验地点: 明向校区
专业班级: 软件1431 学号: XXXX
学生姓名: 白建兴
指导教师: 崔晓红
2015年5月10 日
实验内容
(1)(2)(3)
实验记录
:
#include<iostream>
using namespace std;
void fn1(int z=5);
int x=1,y=2;
int main()
{
cout<<"Begin. . ."<<endl;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
cout<<"Evaluae x and y in main()..."<<endl;
int x=10,y=20;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
cout<<"Step into fn1()..."<<endl;
fn1();
fn1(10);
cout<<"Bace in main"<<endl;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
return 0;
}
void fn1(int z)
{
static int x=100;
int y=200;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
x=x+y+z;
}运行结果:
,3个整数,3个双精度数,3个双精度数的最大值
#include<iostream>
using namespace std;
int max(int x,int y);
double max(double x,double y);
int max(int x,int y,int z);
double max(double x,double y,double z);
int main()
{
int a,b,c;
cout<<"请输入3个整数"<<endl;
cin>>a>>b>>c;
cout<<"2个整数的最大值:"<<max(a,b)<<endl;
cout<<"3个整数的最大值:"<<max(a,b,c)<<endl;
double i,j,k;
cout<<"请输入3个双精度数"<<endl;
cin>>i>>j>>k;
cout<<"2个双精度数的最大值:"<<max(i,j)<<endl;
cout<<"3个双精度数的最大值:"<<max(i,j,k)<<endl;
return 0;
}
int max(int x,int y)
{
return x>y?x:y;
}
double max(double x,double y)
{
return x>y?x:y;
}
int max(int x,int y,int z)
{
return (max(x,y)>z)?max(x,y):z;
}
double max(double x,double y,double z)
{
return (max(x,y)>z)?max(x,y):z;
}运行结果:
,输入若干个值到数组中,分别统计其中正数和负数的个数后再用delete操作释放内存。
#include<iostream>
using namespace std;
const int N=10;
int main()
{
int *p,i,plus,minus;
p=new int[N];
if(!p)
{
cout<<"内存分配错误!"<<endl;
exit(1);
}
plus=0;
minus=0;
cout<<"请任意输入"<<N<<"个整数"<<endl;
for(i=0;i<N;i++)
{
cin>>p[i];
if(p[i]>0)
plus++;
else if(p[i]!=0)
minus++;
}
2014太原理工大学C 实验报告 来自淘豆网m.daumloan.com转载请标明出处.