Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
333930 | 李俞家骅 | 【C1-10】按要求输出 | C++ | 通过 | 100 | 2 MS | 244 KB | 217 | 2025-07-17 09:27:23 |
#include<bits/stdc++.h> using namespace std; int main(){ char x; cin>>x; if(x=='a') cout<<"It is good"; else if(x=='b') cout<<"OMG"; else cout<<"Yes!"; return 0; }