在这个简单的 python 程序中,我们需要找到商和余数。这是一个初级 python 程序。
要理解这个例子,您应该了解以下 Python 编程主题:
- Python 语法
- Python 运算符
- Python 安装和设置
python 中如何求商和余数?
这个简单的 python 程序是关于 python 中算术运算的除法。这里我们需要用给定的数除一个数,并打印出商和余数。例如,考虑两个数字 125 和 7,让我们用 7 除 125,得到的商是 17,提醒是 6。
为了应用 python 语言中的除法逻辑,我们接受来自用户的两个数字,并分别计算商和余数。为了求商,我们用给定的数除以该数,并将该值保存为可变商。其次,我们使用 Mod 运算符计算余数,并将该值保存为余数。最后,使用 python 基本方法和语法打印商和余数。
算法
步骤 1: 接受用户使用输入法输入的两个除法数字,并使用 Python 编程语言中的int()
将字符串转换为整数。
STEP 2: 保存该数除以给定数后的商的值。
步骤 3: 使用模块操作符保存余数的值。
步骤 4: 使用 python 中的打印打印商和余数的值。
Python 源代码
a=int(input("Enter the first number: "))
b=int(input("Enter the second number: "))
quotient=a//b
remainder=a%b
print("Quotient is:",quotient)
print("Remainder is:",remainder)
输出
Enter the First number : 125
Enter the Second number : 7
Quotient is : 17
Reminder is : 6