读取两个数字并打印它们的商和余数的 Python 程序
当需要读取两个数字并在它们相除时打印商和余数时,可以使用'//'和'%'运算符。
以下是相同的演示 -
示例
first_num = int(input("输入第一个数字..."))输出结果second_num = int(input("Enter the second number..."))
print("The first number is ")
print(first_num)
print("The second number is ")
print(second_num)
quotient_val = first_num//second_num
remainder_val = first_num%second_num
print("The quotient is :")
print(quotient_val)
print("The remainder is :")
print(remainder_val)
输入第一个数字...44Enter the second number...56
The first number is
44
The second number is
56
The quotient is :
0
The remainder is :
44
解释
第一个和第二个数字作为用户的输入。
它们显示在控制台上。
要找到商,使用“//”运算符。
要查找余数,请使用“%”运算符。
操作输出分别分配给两个变量。
这在控制台上显示为输出。
以上是 读取两个数字并打印它们的商和余数的 Python 程序 的全部内容, 来源链接: utcz.com/z/331798.html