Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
9737 杨晓铮 8进制转10进制 C++ 解答错误 0 0 MS 260 KB 187 2020-11-18 18:52:28

Tests(0/5):


#include<bits/stdc++.h> using namespace std; int main(){ int ans,n,fu=0,fu1=0; cin>>n; while(n){ fu1=pow(8,fu); ans+=fu1*(n%10); n/=10; fu++; } cout<<ans; }


测评信息: