C# 程序查找数字是否可以被 2 整除
如果数字除以 2 的余数为 0,那么就可以被 2 整除。
假设我们的数字是 5,我们将使用以下 if-else 进行检查 -
// checking if the number is divisible by 2 or not if (num % 2 == 0) { Console.WriteLine("Divisible by 2 "); } else { Console.WriteLine("Not divisible by 2"); }
示例
以下是一个示例,可以用来判断数字是否可以被 2 整除。
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class MyApplication { static void Main(string[] args) { int num; num = 5; // checking if the number is divisible by 2 or not if (num % 2 == 0) { Console.WriteLine("Divisible by 2 "); } else { Console.WriteLine("Not divisible by 2"); } Console.ReadLine(); } } }
输出
Not divisible by 2
广告