Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
123629 | 黄本瀚 | 输出特殊字符 | C++ | 通过 | 100 | 0 MS | 236 KB | 271 | 2024-01-23 08:45:35 |
#include<iostream> #include<cstdio> using namespace std; int main() { cout<<"He said"; cout<<char(58); cout<<char(34); cout<<"The symbol is "; cout<<char(39); cout<<char(92); cout<<char(39); cout<<char(34); cout<<char(46); return 0; }