华师一附中OI组

标题: 大数放前面 [打印本页]

作者: vc_vitamine    时间: 2018-7-5 19:52
标题: 大数放前面
输入两个正整数,输出它们,要求输出时大数字在前,小数字在后,中间用1个空格隔开

作者: JASONZHU    时间: 2018-7-6 22:52
题12.
  1. #include <iostream>
  2. using namespace std;
  3. int d,x;
  4. int main()
  5. {
  6.     cin>>d>>x;
  7.     if(d>x) cout<<d<<" "<<x;
  8.     else if(d<x) cout<<x<<" "<<d;
  9.     return 0;
  10. }

复制代码

作者: 郑子川    时间: 2018-7-14 10:19
  1. #include <iostream>
  2. int x,y;
  3. using namespace std;

  4. int main()
  5. {
  6.     cin>>x>>y;
  7.     if(x>y)
  8.     {
  9.         cout<<x;
  10.     }
  11.     else
  12.     {
  13.         cout<<y;
  14.     }
  15.     return 0;
  16. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2