?? threenum.cpp
字號(hào):
#include <iostream.h>
main()
{
int x,y,z;
int temp=-1;
cout<<"Please input three number"<<endl;
cin>>x>>y>>z;
if (x<y)
{
temp=x;
x=y;
y=temp;
}
if(x<z)
{
temp=z;
z=x;
x=temp;
}
if (y<z)
{
temp=y;
y=z;
z=temp;
}
cout<<x<<y<<z;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -