编写一个 C# 程序来检查一个数字是否能被 2 整除
要检查一个数字是否可以被 2 整除,您首先需要找到余数。
如果数字除以 2 时余数为 0,则该数字可以被 2 整除。
假设我们的数字为 10,我们将使用以下 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 = 10; // 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(); } } }
输出
Divisible by 2
广告