Even number in java | algorithm with source code

Even Number in Java

  A number is called an even number if it is divisible by 2, leaving no remainder. There is an alternative definition of even number and it is one of 0, 2, 4, 6, and 8 as a number. an even number. Examples of even numbers are 12, 66, 456, 9900, and 12342, etc. The remainder is divided by 2 if an odd number is left. Among all those numbers, 1, 3, 5, 7, and 9 are in their place. Those are also called odd numbers.

Algorithm

Step 1: Start
Step 2: [Take input] Read: Number
Step 3: Check: If number% 2 == 0 then
Print: N is an even number.
other
Print: N is an odd number.
Step 4: Exit

Even Number in Java Source Code

import java.io.*; import java.util.*; class Even { public static void main(String []args) { Scanner o=new Scanner(System.in); System.out.println(“enter n value”); int n=o.nextInt(); int i; int a[]=new int[n]; for(i=0;i<n;i++) { a[i]=o.nextInt(); } for(i=0;i<n;i++) { if((a[i]%2)==0) { System.out.println(“even no are”+a[i]); } } } }

Recommended Post:

Find the solution to the salesforce Question.

Pramod Kumar Yadav is from Janakpur Dham, Nepal. He was born on December 23, 1994, and has one elder brother and two elder sisters. He completed his education at various schools and colleges in Nepal and completed a degree in Computer Science Engineering from MITS in Andhra Pradesh, India. Pramod has worked as the owner of RC Educational Foundation Pvt Ltd, a teacher, and an Educational Consultant, and is currently working as an Engineer and Digital Marketer.



Leave a Comment