Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
316757 | 陈弈诺 | 【C1-10】按要求输出 | C++ | Accepted | 100 | 1 MS | 248 KB | 218 | 2025-04-11 19:49:27 |
#include<iostream> 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; }