2 条题解

  • 1
    @ 2026-3-18 17:07:42

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

    • 1
      @ 2026-3-18 17:07:06

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

      • 1

      信息

      ID
      3492
      时间
      1000ms
      内存
      256MiB
      难度
      5
      标签
      递交数
      42
      已通过
      17
      上传者