5 条题解

  • 0
    @ 2023-2-25 10:43:03

    ~为了递归而做字符串的题,我的评价是:36(除了6还是6)~

    #include <bits/stdc++.h>
    using namespace std;
    void f(int n){
        cout << n%10;
        if (n/10>0){
        	f(n/10);
    	}
    }
    int main()
    {
        int a;
        cin >> a;
        f(a);
        return 0;
    }
    

    信息

    ID
    372
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    (无)
    递交数
    158
    已通过
    83
    上传者