//
// 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.比较两个数的大小
Posted tp0829
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++3.比较两个数的大小相关的知识,希望对你有一定的参考价值。
以上是关于C++3.比较两个数的大小的主要内容,如果未能解决你的问题,请参考以下文章