编写程序,从键盘上输入3个实数,输出最大数
时间: 2023-05-27 08:05:27 浏览: 86
以下是Python程序实现:
```python
a = float(input("请输入第一个实数:"))
b = float(input("请输入第二个实数:"))
c = float(input("请输入第三个实数:"))
if a > b and a > c:
print("最大数为:", a)
elif b > a and b > c:
print("最大数为:", b)
else:
print("最大数为:", c)
```
程序首先从键盘上输入3个实数,使用`float()`函数将输入的字符串转换为浮点数类型。然后使用`if`语句判断最大数是哪一个,并输出结果。如果第一个数`a`大于另外两个数`b`和`c`,则`a`为最大数;如果第二个数`b`大于第一个数`a`和第三个数`c`,则`b`为最大数;否则,第三个数`c`为最大数。
相关问题
编写程序,从键盘输入3个实数,输出最大数
```
a = float(input("请输入第一个实数:"))
b = float(input("请输入第二个实数:"))
c = float(input("请输入第三个实数:"))
if a > b and a > c:
print("最大数是:", a)
elif b > a and b > c:
print("最大数是:", b)
else:
print("最大数是:", c)
```
注:本程序使用了if-elif-else语句,当第一个条件不成立时,才会考虑第二个条件,以此类推。如果都不成立,就会执行else语句。
编写程序,从键盘输入3个实数,输出最大数。"
以下是程序的代码:
#include <stdio.h>
int main() {
double a, b, c;
printf("请输入三个实数:\n");
scanf("%lf %lf %lf", &a, &b, &c);
double max = a;
if (b > max) {
max = b;
}
if (c > max) {
max = c;
}
printf("最大数为:%.2lf\n", max);
return 0;
}
这个程序可以从键盘输入三个实数,然后输出最大的那个数。
阅读全文