题解 1055: 二级C语言-进制转换

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

直接格式输出

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n;    scanf("%d",&n);    printf("%o",n);    retur……

1055: 二级C语言-进制转换

摘要:解题思路:注意事项:参考代码:def to_octal(num):    if num == 0:        return &#39;0&#39;    octal_digits = []    ……

字符格式化

摘要:解题思路:。。。。。。。。注意事项:。。。。。。。。。参考代码:n=int(input()) print(format(int(oct(n),8),&#39;o&#39;))……