编写一个 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

更新时间: 2020年6月20日

2K+ 次浏览

启动你的 职业生涯

完成课程取得认证

开始学习
广告
© . All rights reserved.