

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to find whether the Number is Divisible by 2 using C#?
To find whether a number is divisibe by 2 is not, check what happens when the number is divisible by 2.
If the remainder is 0, then the number is divisible by 2, else it is false −
if (num % 2 == 0) { Console.WriteLine("Divisible by 2 "); } else { Console.WriteLine("Not divisible by 2"); }
The following is the complete code −
Example
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class Test { static void Main(string[] args) { int num; num = 18; // 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(); } } }
Output
Divisible by 2
- Related Questions & Answers
- C# Program to find whether the Number is Divisible by 2
- Find the Numbers that are not divisible by any number in the range [2, 10] using C++
- Write a C# program to check if a number is divisible by 2
- Find N digits number which is divisible by D in C++
- Find the first natural number whose factorial is divisible by x in C++
- C/C++ Program to check whether it is possible to make the divisible by 3 number using all digits in an array?
- Find the number closest to n and divisible by m in C++
- Find if a number is divisible by every number in a list in C++
- Python Program to check whether it is possible to make a divisible by 3 number using all digits in an array
- Java Program to check whether it is possible to make a divisible by 3 number using all digits in an array
- Check if a large number is divisible by 2, 3 and 5 or not in C++
- Check if n is divisible by power of 2 without using arithmetic operators in Python
- C/C++ Program to check whether it is possible to make a divisible by 3 number using all digits in an array?
- Number is divisible by 29 or not in C++
- Largest number with the given set of N digits that is divisible by 2, 3 and 5 in C++
Advertisements