Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
84004 sh25_shenpy 数位分离 C++ 通过 0 MS 248 KB 247 2026-02-05 15:33:27

Tests(10/10):


#include<iostream> using namespace std; int main(){ int n; cin>>n; int s=0; int u[10]; while(n){ u[s]=n%10; s=s+1; n=n/10; } for(int i=s-1;i>=0;--i) cout<<u[i]<<" "; return 0; }


测评信息: