在C語言中,計算余數可以使用取余運算符%。取余運算符返回兩個數相除的余數。例如,a % b表示a除以b的余數。下面是一個簡單的示例:
%
a % b
a
b
#include <stdio.h> int main() { int a = 17; int b = 5; int result = a % b; printf("余數為: %d\n", result); return 0; }
在這個示例中,計算17除以5的余數,結果為2。
17
5
2
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529