Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
36959 YOYOLEE-李昕颖 倒序数 C++ 通过 1 MS 252 KB 190 2024-01-18 14:49:38

Tests(4/4):


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


测评信息: