题解
2023-09-05 12:53:38
发布于:重庆
6阅读
0回复
0点赞
此题题解如下:
#include<bits/stdc++.h>
using namespace std;
int main(){
int x,y;//声明变量x,y
cin>>x>>y;//输入x,y
if(x>y){//判断是大于情况
cout<<'>';
}else if(x<y){//判断是小于情况
cout<<'<';
}else{//判断是等于情况
cout<<'=';
}
return 0;
}
总结
此题考验的是同学对判断语句的运用熟练度,很适合初学者练习
难度:★☆☆☆☆
这里空空如也
有帮助,赞一个