2007/04/25 | 整理了一下有关任意两个数字的比较大小问题,初学必看
类别(计算机与编程) | 评论(0) | 阅读(26) | 发表于 14:02

//2002.09.01.this is my first programme about compare 2 nums

#include <iostream.h>
#include <time.h>

main()

{
cout<<endl;
cout<<"**************************************************"<<endl;
cout<<"please input 2 nums to compare which one is big..."<<endl<<endl;
long int x,y;
cout<<"please input the x.value: "<<endl;
cin>>x;
cout<<"please input the y.value: "<<endl;
cin>>y;

long int z;
if (x>y)
{
z=x;
}
else
{
z=y;
}

cout<<endl;
cout<<"the big one is: "<<z<<endl<<endl;

cout<<"do you want to exit?"<<endl;
char BB;
cin>>BB;
return 0;


}

0

评论Comments

日志分类
首页[666]
计算机与编程[133]
EMU[40]
UFOs[24]
房产[127]
音乐[13]
LOG[0]
经济[120]
影视[3]
物理[7]
数学[8]
社会[105]
职场[9]
生物医学[18]
生活[59]