竞赛
考级
LS_YZY
#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; }
xwy
冷知识:c++是有10转8的函数的,叫oct,跟在输出的前边
༺དༀ༒∞░∞༒ༀཌ༻
复仇者_零