题目4-2:给定3个整数a、b、c,计算表达式(a+b)/c的值,/是整除运算。
给定3个整数a、b、c,计算表达式(a+b)/c的值,/是整除运算。
输入格式:
输入仅一行,包括三个
整数a、b、c, 数与
数之间以一个空格分开。
(-10,000 < a,b,c < 10,000, c不等于0)
输出格式:
输出一行,即表达式的值。
map()函数
描述:map() 会根据提供的函数对指定序列做映射。第一个参数 function 以参数序列中的每一个元素调用 function 函数,返回包含每次 function 函数返回值的新列表。
语法:map(function, iterable, ...)
参数:
function -- 函数
iterable -- 一个或多个序列
返回值:Python 2.x 返回列表。Python 3.x 返回迭代器。
代码:
a, b, c = map(int, input('请输入三个整数:').split())
print((a+b)//c)
运行结果:
a, b, c = map(int, input().split())
print((a+b)//c)
a, b, c = map(int, input().split())
d = (a+b)//c
#print("%d" % (d))
print(int(d))
# 读取输入
a, b, c = map(int, input().split())
# 检查c是否为0,以防止除数为0的错误
if c == 0:
print("错误:除数不能为0")
else:
# 计算整除结果
result = (a + b) // c
# 输出结果
print(result)
标签:function,map,int,给定,print,input,整除,表达式 From: https://www.cnblogs.com/flyingsir/p/17748925.html