1504: 判断一个整型数据有几位v2.0
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:3987
Solved:2238
Description
从键盘输入一个整型数据(int型),编写程序判断该整数共有几位,并输出包含各个数字的个数。例如,从键盘输入整数16644,该整数共有5位,其中有1个1,2个6,2个4。
程序运行结果示例1:
Please enter the number:
12226↙
12226: 5 bits
1: 1
2: 3
6: 1
程序运行结果示例2:
Please enter the number:
-12243↙
-12243: 5 bits
1: 1
2: 2
3: 1
4: 1
Input
输入格式: "%d"
Output
输出格式:
输入提示信息:"Please enter the number:\n"
判断该整数共有几位:"%d: %d bits\n"
包含数字0的个数:"0: %d\n"
包含数字1的个数:"1: %d\n"
包含数字2的个数:"2: %d\n"
包含数字3的个数:"3: %d\n"
包含数字4的个数:"4: %d\n"
包含数字5的个数:"5: %d\n"
包含数字6的个数:"6: %d\n"
包含数字7的个数:"7: %d\n"
包含数字8的个数:"8: %d\n"
包含数字9的个数:"9: %d\n"
为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。
Sample Input Copy
12226
Sample Output Copy
Please enter the number:
12226: 5 bits
1: 1
2: 3
6: 1