Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
105096 吴宗桦 数的计数 C++ 解答错误 0 0 MS 252 KB 213 2023-10-05 10:23:13

Tests(0/5):


#include<iostream> using namespace std; int shenma(int x) { int y; y=x/2; if(x==1) return 1; else return y+shenma(y); } int main() { int a; cin>>a; cout<<shenma(a)+1; return 0; }


测评信息: