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

Posted tp0829

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++3.比较两个数的大小相关的知识,希望对你有一定的参考价值。

//
//  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.比较两个数的大小的主要内容,如果未能解决你的问题,请参考以下文章

C语言创建一个函数,并调用比较两个数的大小

JAVA比较2个数大小

编写Java程序,比较两个数的大小,找出其中最大数与最小数,并输出最大数与最小数之差.

java中,比较两个数的大小 返回给主方法

C语言中,怎么比较三个数的大小??

JAVA怎么用if语句 比较两个数的大小? 急!!谢谢!在线等