4 条题解

  • 2
    @ 2026-5-23 11:33:08

    #include <bits/stdc++.h> using namespace std;

    int main() { double x, y; cin >> x >> y; if ( x < y) { cout << "<"; } else if (x == y) { cout << "="; } else if (x > y) { cout << ">"; } return 0; }

    • 1
      @ 2026-5-23 11:31:23

      #include <bits/stdc++.h> using namespace std;

      int main() { double x, y; cin >> x >> y; if ( x < y) { cout << "<"; } else if (x == y) { cout << "="; } else if (x > y) { cout << ">"; } return 0; }

      • 0
        @ 2026-5-23 15:28:38

        #include <bits/stdc++.h> using namespace std;

        int main() { long long x,y; cin>>x>>y; if(x>y){ cout<<">"; } else if(x==y){ cout<<"="; } else if(x<y){ cout<<"<"; }

        return 0;
        

        }

        • 0
          @ 2026-5-23 11:37:56

          #include <bits/stdc++.h> using namespace std;

          int main() { double x, y; std::cin >> x >> y; if ( x < y) { std::cout << "<"; } else if (x == y) { std::cout << "="; } else if (x > y) { std::cout << ">"; } return 0; }

          • 1

          信息

          ID
          30927
          时间
          1000ms
          内存
          256MiB
          难度
          4
          标签
          (无)
          递交数
          97
          已通过
          43
          上传者