码迷,mamicode.com
首页 > 编程语言 > 详细

【C++】3.比较两个数的大小

时间:2018-03-04 21:15:15      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:return   har   比较   大小   main   clu   ret   .cpp   ted   

//
//  main.cpp
//  2_3
//
//  Created by T.P on 2018/3/4.
//  Copyright ? 2018年 T.P. All rights reserved.
//


//比较两个数的大小
#include <iostream>
#include <iomanip>
using namespace std;


int main(int argc, const char * argv[]) {
    int x,y;
    cout<<"Please Enter x and y : ";
    cin>>x>>y;
    cout<<endl;
    if(x!=y){
        if(x>y)
            cout << "x>y";
        else
            cout << "x<y";
    }
    else
        cout << "x=y";
    cout << endl;
    return 0;
}

【C++】3.比较两个数的大小

标签:return   har   比较   大小   main   clu   ret   .cpp   ted   

原文地址:https://www.cnblogs.com/tp0829/p/8505615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!