给定两个数字被除数和除数。任务是编写一个程序,求被除数除以除数时这两个数字的商和余数。
在除法中,我们会看到被除数、除数、商和余数之间的关系。我们除掉的数字称为被除数。我们除以的数字称为除数。得到的结果称为商。剩下的数称为余数。
55 ÷ 9 = 6 and 1 Dividend Divisor Quotient Remainder
Input: Dividend = 6 Divisor = 2 Output: Quotient = 3, Remainder = 0
然后,使用算术运算符 / 将变量 Dividend 和 Divisor 相除,得到商作为结果存储在变量 quotient 中;并使用算术运算符 % 获取余数作为结果存储在变量剩余中。
#include <stdio.h> int main() { int dividend, divisor, quotient, remainder; dividend= 2; divisor= 6; // Computes quotient quotient = dividend / divisor; // Computes remainder remainder = dividend % divisor; printf("Quotient = %d</p><p>", quotient); printf("Remainder = %d", remainder); return 0; }
以上是计算商和余数的C程序?的详细内容。更多信息请关注PHP中文网其他相关文章!