write a program in Java to input 10 integers and check with all the entered numbers are even numbers or not
Answers
Answered by
1
Explanation:
please refer to above picture
please mark brainliest if you agree with my answer
Attachments:
Answered by
6
JAVA PROGRAM:
import java.util.*;
public class Brainly
{
static void main()
{
Scanner sc=new Scanner(System.in);
int i,n,f=0;
System.out.println("Enter 10 integers:");
for(i=1;i<=10;i++)
{
n=sc.nextInt();
if(n%2!=0)
f=1;
}
if(f==0)
System.out.println("All are Even Numbers");
else
System.out.println("All are not Even Numbers");
}
}
Similar questions