文章
79
粉丝
221
获赞
46
访问
197.7k
#include <iostream> #include <string> using namespace std; int main() { int n; while(cin>>n){ string res=""; while(n>0){ res=char(n%8+'0')+res; n/=8; } cout<<res<<endl; } return 0; }
思路很简单,重要的是可以熟练写出并应用。
登录后发布评论
暂无评论,来抢沙发