Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168632 | C班-范浩宇 | 幂次方 | C++ | 解答错误 | 42 | 1 MS | 272 KB | 574 | 2024-08-20 12:21:37 |
#include <bits/stdc++.h> using namespace std; int a; void fun(int x) { for (int i = 14; i >= 0; i--) { if (pow(2, i) <= x) { if (i == 1) cout << "2"; else if (i == 0) cout << "2(0)"; else { cout << "2("; fun(i); cout << ")"; } x -= pow(2, i); if (x != 0) cout << "+"; } } } int main() { cin >> a; fun(a); return 0; }