Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
115061 | 李钧皓 | 11石头剪刀布 | C++ | Wrong Answer | 1 MS | 272 KB | 189 | 2025-03-28 14:12:49 |
#include <iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b){ cout<<"winner:1"<<endl; } if(a<b){ cout<<"winner:2"<<endl; } return 0; }
------Input------
0 1
------Answer-----
winner:1
------Your output-----
winner:2