10 条题解
-
1凯旋的青春 LV 7 @ 2023-6-28 10:38:51
#include <iostream> #include <stdio.h> #include <iomanip> #include <math.h> using namespace std; const int N = 1e6 + 10; const int INF = 0x3f3f3f3f; int main() { int x , y; cin >> x >> y; if( x > y ) { cout << ">"; } else if( x = y ) { cout << "="; } else { cout << "<"; } return 0; }
-
12023-1-26 16:21:16@
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b){ cout<<">"; }else if(a<b){ cout<<"<"; }else{ cout<<"="; } return 0; }
-
02024-4-12 20:01:26@
#include<bits/stdc++.h> using namespace std; string a; int main() { int x,y; cin>>x>>y; if(x>y) { cout<<">"<<endl; } else if(x<y) { cout<<"<"<<endl; } else { cout<<"="<<endl; } return 0; }
-
02023-12-26 17:29:06@
#include<iostream> #include<iomanip> using namespace std; const int N=1e5+10; const int INF=0x3f3f3f3f; int x,y; bool a(int x,int y) { if(x>y) return 1; else if(x<y) return 0; else if(x==y) return 2; } int main(){ cin>>x>>y; if(a(x,y)==0) cout<<"<"; else if(a(x,y)==1) cout<<">"; else if(a(x,y)==2) cout<<"="; } 闲的
-
02023-5-23 20:09:14@
#include <iostream> #include <cmath> #include <iomanip> #include <stack> #include <algorithm> #include <string> #include <cstring> using namespace std; const int INF = 0x3f3f3f3f; int a , b; int main() { cin >> a , b; if (a > b) { cout << "<"; } else if (a = b) { cout << "="; } else { cout << ">"; } return 0; }
-
02023-2-18 14:19:15@
#include <iostream> using namespace std; int main() { int x,y; cin>>x,y; if(x==y){ cout<<"="; } else if(x>y){ cout<<">"; } else{ cout<<"<"; } }
-
02022-9-3 13:42:57@
#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 if (x > y) { cout << ">"; } return 0; }
-
-12022-1-2 15:29:53@
#include <stdio.h> #include <iostream> #include <math.h> using namespace std; int main() { int x,y; cin >> x >>y; if(x>y) { cout<<">"; } else if (x=y) { cout<<"="; } else { cout<<"<"; } }
-
-22022-7-2 17:04:25@
#include<stdio.h> #include<iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(x>y) { cout<<">"<<endl; }else if(x==y) { cout<<"="<<endl; }else { cout<<"<"<<endl; } }
-
-22022-1-2 15:35:57@
#include <stdio.h> #include <iostream> #include <math.h> using namespace std; int main() { int x,y; cin >>x >>y; if(x >y) { cout << ">"; } if(x ==y) { cout << "="; }if(x <y) { cout << "<"; } }
- 1
信息
- ID
- 891
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 3
- 标签
- 递交数
- 597
- 已通过
- 338
- 上传者