正经题解复仇者_零2025-07-10 10:14:45发布于:浙江9阅读0回复0点赞#include<iostream> using namespace std; int n; void f(int x) { if (x >= 8) f(x / 8); cout << x % 8; } int main() { cin >> n; f(n); return 0; } 有帮助,赞一个去预览0/2000发布这里空空如也
有帮助,赞一个