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로 나누어지는지 확인하는 예입니다.
라이브 데모< /p>
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
위 내용은 숫자가 2로 나누어지는지 확인하는 C# 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!