Python
```python
方法一: 使用input函数获取输入,并直接分解
x = int(input('输入一个三位数整数:'))
a = x // 100
b = (x - a * 100) // 10
c = x % 10
print("百:", a, "十:", b, "个:", c)
方法二: 使用input函数获取输入,然后通过取余和整除操作分解
x = int(input('输入一个三位数整数:'))
a = x // 100
b = x % 100 // 10
c = x % 10
print('百:', a, '十:', b, '个:', c)
```
C
```c
include
int main() {
int a, b, c, d, e;
scanf("%d", &a);
b = a / 100; // 求百位上的数
c = (a - b * 100) / 10; // 求十位上的数
d = a - b * 100 - c * 10; // 求个位上的数
e = b + c + d; // 求该整数各位上的数字的和
printf("%d,%d,%d,%d", b, c, d, e);
return 0;
}
```
C++
```cpp
include
int main() {
int a, b, c, d, e;
std::cin >> a;
b = a / 100; // 求百位上的数
c = (a - b * 100) / 10; // 求十位上的数
d = a - b * 100 - c * 10; // 求个位上的数
e = b + c + d; // 求该整数各位上的数字的和
std::cout<< b << ","<< c << ","<< d << ","<< e << std::endl;
return 0;
}
```
Java
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入一个三位数整数: ");
int x = scanner.nextInt();
int a = x / 100;
int b = (x % 100) / 10;
int c = x % 10;
System.out.println("百: " + a + " 十: " + b + " 个: " + c);
}
}
```
JavaScript
```javascript
let x = parseInt(prompt("输入一个三位数整数:"));
let a = Math.floor(x / 100);
let b = Math.floor((x % 100) / 10);
let c = x % 10;
alert("百: " + a + " 十: " + b + " 个: " + c);
```
这些示例展示了如何在不同的编程语言中获取用户输入的三位数,并将其分解为百位、十位和个位数字,然后输出这些数字。你可以选择适合你的编程语言和方法来实现这一功能。