gpt4 book ai didi

c - 如何制作一个 if...else 结构,对某个数字的某个倍数使用react?

转载 作者:行者123 更新时间:2023-11-30 20:17:14 26 4
gpt4 key购买 nike

我有一个无限循环,并且想添加一个 if...else 循环,该循环在循环第 10、20、30(也称为 10 的倍数)时间时触发。

我想知道是否可以制作类似的东西

if (x is the multiple of 10) printf(something)

else printf(something else)

谢谢!

最佳答案

一个数除以 10 时余数为 0,则它是 10 的倍数。因此使用模运算符 %:

if (x % 10 == 0) {
// do something
} else {
// do something else
}

关于c - 如何制作一个 if...else 结构,对某个数字的某个倍数使用react?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58358927/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com