CodeAE代码之家-专为程序员打造的技术家园!-网站地图
广场
›
编程语言
› BC34 进制A+B
湛蓝之海
发表于 2021-12-25 14:03:56
BC34 进制A+B
#include<stdio.h>
int main()
{
int a = 0;
int b = 0;
scanf("%x %o",&a,&b);
printf("%d",a+b);
return 0;
}
https://blog.51cto.com/u_15460718/4839519
页:
[1]
查看完整版本:
BC34 进制A+B