Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
125316 邹芸轩 判断正数 C++ Wrong Answer 0 0 MS 252 KB 241 2024-01-23 16:43:51

Tests(0/2):


#include <bits/stdc++.h> using namespace std; void check(int a,int b){ if(a > b) cout<<"a>b"; else if(a == b) cout<<"a=b"; else if(a < b) cout<<"a<b"; } int main(){ int a,b; scanf("%d%d",&a, &b); check(a,b); return 0; }


Judgement Protocol: