55 ÷ 9 = 6 and 1 Dividend Divisor Quotient Remainder
Input: Dividend = 6 Divisor = 2 Output: Quotient = 3, Remainder = 0説明次に、変数 Dividend と Divisor が算術演算子 / を使用して除算されます。変数 quotient に格納された結果として商を取得します。算術演算子 % を使用して、結果として剰余を取得し、結果として変数残りに格納します。Example
#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 中国語 Web サイトの他の関連記事を参照してください。