在C语言中,求余数可以使用取模运算符(%)来实现。取模运算符返回两个操作数相除后的余数。
例如,下面的代码演示了如何使用取模运算符来计算两个整数的余数:
```c
#include
int main() {
int dividend = 15;
int divisor = 4;
int remainder;
remainder = dividend % divisor;
printf("The remainder is: %d\n", remainder);
return 0;
}
```
输出结果为:
```
The remainder is: 3
```
在上面的例子中,dividend(被除数)等于15,divisor(除数)等于4。然后,使用取模运算符计算余数,并将结果存储在remainder(余数)变量中。最后,使用printf函数将余数打印到控制台上。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 怎么用c语言输出星号金字塔