一个认为一切根源都是“自己不够强”的INTJ
个人主页:用哲学编程-CSDN博客
专栏:每日一题——举一反三
Python编程学习
Python内置函数
目录
我的写法:

#include <stdio.h>
int
main()
{
int num,i;
scanf("%d",&num);
int handred_bit=num/100,ten_bit=(num/10)%10,single_bit=num%10;
if(handred_bi