2024年6月29日

摘要: #include <iostream> using namespace std; void fun(int n) { if (n == 0) { cout << 0; return; } int binary[32]; // 存储二进制数的数组 int i = 0; while (n > 0) { 阅读全文
posted @ 2024-06-29 09:58 lydstory 阅读(26) 评论(0) 推荐(0)

导航