C语言
方法一:使用if语句
```c
include
int main() {
int a, b, c, max;
printf("请输入三个数:");
scanf("%d %d %d", &a, &b, &c);
if (a > b) {
if (a > c) {
max = a;
} else {
max = c;
}
} else {
if (b > c) {
max = b;
} else {
max = c;
}
}
printf("这三个数的最大数为: %d\n", max);
return 0;
}
```
方法二:使用qsort函数
```c
include include int cmp(const void * a, const void * b) { return(*(int *) a - *(int *) b); } int main() { int a; printf("请输入三个数:"); scanf("%d %d %d", &a, &a, &a); qsort(a, 3, sizeof(int), cmp); printf("这三个数的最大值为: %d\n", a); return 0; } ``` Python ```python a = int(input("请输入第一个数:")) b = int(input("请输入第二个数:")) c = int(input("请输入第三个数:")) max_value = max(a, b, c) print("最大值为:", max_value) ``` Java ```java import java.util.Scanner; public class MaxXYZ { public static void main(String[] args) { int x = 0; int y = 0; int z = 0; int max = 0; Scanner sc = new Scanner(System.in); System.out.println("请输入三个整数:"); x = sc.nextInt(); y = sc.nextInt(); z = sc.nextInt(); max = x; if (y > max) { max = y; } if (z > max) { max = z; } System.out.println("max:" + max); } } ``` JavaScript ```javascript let a = parseInt(prompt("请输入第一个数:")); let b = parseInt(prompt("请输入第二个数:")); let c = parseInt(prompt("请输入第三个数:")); let max = Math.max(a, b, c); alert("最大值为:" + max); ``` 这些示例展示了如何在不同的编程语言中定义三个数值变量,并从用户输入中获取这些数值,然后找出并输出这三个数中的最大值。你可以根据所使用的编程语言选择合适的代码片段。