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