1.输出:This is a C++ program.。
#include <iostream>
using namespace std;
int main()
{cout<<"This is a C++ progrmme.";
return 0;
}
2.求a和b两个数之和。
#include <iostream>
using namespace std;
int main()
{int a,b,sum;
cout<<"请输入两个整数:";
cin>>a>>b;
sum=a+b;
cout<<"sum="<<sum<<endl;
return 0;
}
3.求两个数中的最大值。
#include <iostream>
using namespace std;
int main()
{int max(int x,int y);
int a,b,m;
cout<<“请输入两个整数:”
cin>>a>>b;
m=max(a,b);
cout<<"max="<<m<<endl;
return 0;
}
int max(int x,int y)
{int z;
if(x>y)
z=x;
else z=y;
return z;
}
4.输入输出学号和成绩。
#include <iostream>
using namespace std;
class Student
{private :
int num;
int score;
public :
void setdata()
{cin>>num;
cin>>score;
}
void display()
{cout<<"num="<<num<<endl;
cout<<"score="<<score<<endl;
};
};
Student stud1 ,stud2;
int main()
{stud1.setdata();
stud2.setdata();
stud1.display();
stud2.display();
return 0;
}
5.求三个数中的最小者。
#include <iostream>
using namespace std;
int main()
{int f(int x,int y,int z);
int a,b,c;
cin>>a>>b>>c;
c=f(a,b,c);
cout<<c<<endl;
return 0;
}
int f(int x,int y,int z)
{int m;
if(x<y) m=x;
else m=y;
if(z<m)
m=z;
return m;
}
6.三个数排序。三个数排序.rar
#include <iostream>
using namespace std;
int main()
{void sort(int x,int y,int z);
int x,y,z;
cout<<"请输入三个数:"<<endl;
cin>>x>>y>>z;
sort(x,y,z);
return 0;
}
void sort(int x,int y,int z)
{int temp;
if(x>y)
{temp=x;
x=y;
y=temp;
}
if(z<x)
cout<<"排序如下:"<<z<<','<<x<<','<<y<<','<<endl;
else if(z<y)
cout<<"排序如下:"<<x<<','<<z<<','<<y<<','<<endl;
else cout<<"排序如下:"<<x<<','<<y<<','<<z<<','<<endl;
}
posted on 2011-07-06 13:54
唐有炜 阅读(172)
评论(0) 编辑 收藏 引用