Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
173659 | B班---刘鸿晖 | 幂次方 | C++ | 无测评数据 | 0 | 0 MS | 0 KB | 404 | 2024-08-20 23:09:25 |
#include <bits/stdc++.h> using namespace std; int a[16]; void f(int x){ for(int i=15;i>=0;i--){ if(x>=a[i]){ x-=a[i]; if(i==0) printf("2(0)"); else if(i==1) printf("2"); else{ printf("2("); f(i); printf(")"); } if(x>0) cout<<"+"; } } } int main(){ a[0]=1; for(int i=1;i<=15;i++){ a[i]=a[i-1]*2; } int n; cin>>n; f(n); return 0; }