Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5675 欧阳漌 分离整数的各个数位 C++ 解答错误 0 0 MS 248 KB 148 2020-08-14 17:06:57

Tests(0/2):


#include<bits/stdc++.h> using namespace std; int main(){ int n,t; cin>>n; while(n!=0){ t=n%10; cout<<t; n=n/10; } return 0; }


测评信息: