用C++编译出三位整数提取出百位数,十位数,个位数
时间: 2023-05-25 13:05:31 浏览: 194
c代码-打印出所有的"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数 本身。例如:153是一个"水仙花数",因为153=1的三次方+5的三次方+3的三次方。
#include <stdio.h>
int main()
{
int num, hundreds, tens, units;
printf("Enter a three-digit integer: ");
scanf("%d", &num);
// Extracting the hundreds place digit
hundreds = num / 100;
// Extracting the tens place digit
tens = (num % 100) / 10;
// Extracting the units place digit
units = num % 10;
printf("Hundreds place digit: %d\n", hundreds);
printf("Tens place digit: %d\n", tens);
printf("Units place digit: %d\n", units);
return 0;
}
阅读全文