求助!!!

111111 2024-06-09 13:14:50 7

#include<bits/stdc++.h> using namespace std; int main(){ int x,y; cin>>x>>y; if(x>y)cout<<">"; if(x<y)cout<<"<"; if(x=y)cout<<"="; return 0; }

{{ vote && vote.total.up }}

共 1 条回复

root 站长

if(x=y) 判断等于应该是 ==