Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
47404 杨中琦 分离整数的各个数位 C++ 通过 100 0 MS 260 KB 138 2022-07-14 17:46:45

Tests(2/2):


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


测评信息: