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

1 条评论

  • @ 2024-12-14 19:44:17
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        double a,b;
        cin>>a>>b;
        if(a>b) cout<<">";
        else if(a<b) cout<<"<";
        else if(a==b) cout<<"=";
    	return 0;
    }
    
    • 1

    信息

    ID
    12
    时间
    1000ms
    内存
    256MiB
    难度
    10
    标签
    递交数
    54
    已通过
    2
    上传者