Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
36435 liusiyu 倒序数 C++ 通过 0 MS 240 KB 208 2024-01-13 14:26:59

Tests(4/4):


#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int wh=0,a[100]; while(n){ a[wh]=n%10; n/=10; wh++; } for(int i=0;i<wh;i++){ cout<<a[i]; } return 0; }


测评信息: