Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97486 刘子锐 11石头剪刀布 C++ Wrong Answer 1 MS 260 KB 218 2024-11-16 09:28:34

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int b; for( b=1;b<=20;b++){ if(b%7==0||b%10==7){ cout<<"过"<<endl; } else{ cout<<b<<endl; } } return 0; }


Run Info:

------Input------
0 1
------Answer-----
winner:1
------Your output-----
1 2 3 4 5 6 过 8 9 10 11 12 13 过 15 16 过 18 19 20