华师一附中OI组
标题:
大数放前面
[打印本页]
作者:
vc_vitamine
时间:
2018-7-5 19:52
标题:
大数放前面
输入两个正整数,输出它们,要求输出时大数字在前,小数字在后,中间用1个空格隔开
作者:
JASONZHU
时间:
2018-7-6 22:52
题12.
#include <iostream>
using namespace std;
int d,x;
int main()
{
cin>>d>>x;
if(d>x) cout<<d<<" "<<x;
else if(d<x) cout<<x<<" "<<d;
return 0;
}
复制代码
作者:
郑子川
时间:
2018-7-14 10:19
#include <iostream>
int x,y;
using namespace std;
int main()
{
cin>>x>>y;
if(x>y)
{
cout<<x;
}
else
{
cout<<y;
}
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2