| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 123212 | 黄本瀚 | 输出特殊字符 | C++ | Wrong Answer | 0 | 0 MS | 240 KB | 229 | 2024-01-22 17:29:19 |
#include<iostream> using namespace std; int main() { int a,b; char c; cout<<"He said:"; cout<<char(34); cout<<"The symbol is "; cout<<char(39); cout<<char(92); cout<<char(39); cout<<char(34); return 0; }