2 条题解

  • 0
    @ 2023-10-22 11:18:34
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        long long a,b;
        cin>>a>>b;
        if(a>b) cout<<">";
        else if(a==b) cout<<"=";
        else cout<<"<";
        return 0;
    }
    
    • 0
      @ 2023-10-1 16:29:19
      #include<iostream>
      using namespace std;
      int main(){
      	int x,y;
      	cin >> x >> y;
      	if (x>y)
      		cout << ">";
      	else if (x==y)
      		cout << "=";
      	else
      		cout << "<";
      	return 0;
      }
      
      • 1

      信息

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