| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 152821 | 黄俊然 | 字符倒序 | C++ | Wrong Answer | 1 MS | 276 KB | 210 | 2026-05-02 21:59:13 |
#include<stdio.h> #include<iostream> using namespace std; int main(){ string s; int n; getline(cin,s); n=s.length(); for(int i=0;i<=s.size();i++){ cout<<s[n-i]; } return 0; }
------Input------
.margorp a si sihT This is not a program.
------Answer-----
.margorp a ton si sihT This is a program.
------Your output-----