Royal


私信TA

用户名:860622586

访问量:13357

签 名:

等  级
排  名 429
经  验 4923
参赛次数 0
文章发表 47
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<stdio.h>

int main(){

int n,i=0,j;

int a[100];

scanf("%d",&n);

while(n>0){

a[i]=n%8;

i++;

n=n/8;

}

for(j=i-1;j>=0;j--){

printf("%d",a[j]);

}

printf("\n");

return 0;

}


 

0.0分

4 人评分

  评论区

  • «
  • »