gpt4 book ai didi

c# - 如何在 C# 中查找多个

转载 作者:行者123 更新时间:2023-11-30 19:07:36 30 4
gpt4 key购买 nike

我如何才能在 if 语句中发现指定的 int 是 5 的倍数?这就是我的意思:

if(X [is a multiple of] 5)
{
Console.Writeline("Yes");
}

[是]的倍数是多少?

此外,为什么当我这样做时:

if(X = 5)
{
Console.Writeline("sdjfdslf");
}

它以红色显示“X = 5”并告诉我“无法将类型“int”隐式转换为“bool”?我正在使用 X 作为输入。

最佳答案

how might I find out, in an if statement, weather the specified int is a multiple of 5?

您想使用模运算 (%)。

if (X % 5 == 0) {
Console.Writeline("Yes");
}

it shows "X = 5" in red and tells me "Can not implicitly convert type "int" to "bool"? I am using X as an input.

单个等于=是赋值。您希望双等号 == 检查是否相等。

关于c# - 如何在 C# 中查找多个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4294009/

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