蓝桥杯16进制转8进制
我以为题目会错意了
改了整整一上午
改了整整一上午
改了整整一上午
换了N种思路甚至搬出了scanf("%X")printf("%o")
官网的编译系统就是不让我过
好的对不起打扰了告辞好自为之
我眼睛要瞎了
![
#include<stdio.h>
#include<math.h>
int convert();
int main()
{
int i,j,c,n,tmp;
int b[10]={0};
char a[10][8];
scanf("%d",&n);
//getchar();
for(i=0;i<n;i++)
scanf("%s",a[i]);
for(i=0;i<n;i++)
{
tmp=0;
for(j=0;j<strlen(a[i]);j++)
{
if(j+1==strlen(a[i]))
c=1;
else c=16;
if(a[i][j]>='0'&&a[i][j]<='9')
tmp=(tmp+a[i][j]-48)*c;
else tmp=(tmp+a[i][j]-55)*c;
}
b[i]=tmp;
printf("%d\n",convert(b[i]));
}
return 0;
}
int convert(int x)
{
int d=0,tmp=0;
while(x!=0)
{
tmp=tmp+(x%8)*pow(10,d);
x/=8;
d++;
}
return tmp;
}](https://img-blog.csdnimg.cn/20200229153438579.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L0RlYXJKVUxZ,size_16,color_FFFFFF,t_70)