2 条题解

  • 0
    @ 2025-1-26 16:15:49

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

    • 0
      @ 2025-1-20 21:23:56

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

      • 1

      信息

      ID
      429
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      (无)
      递交数
      91
      已通过
      62
      上传者