| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 71183 | sh25_wangtaojie | 打印ASCII码 | C++ | Accepted | 0 MS | 240 KB | 134 | 2025-10-24 15:42:51 |
#include <iostream> using namespace std; int main() { char ch; cin >> ch; cout << static_cast<int>(ch) << endl; return 0; }