import java.util.Scanner;
public class EvenOrOdd
{
public static void main (String []args)
{
int EvenOrOdd = 0; // set EvenOrOdd to zero
Scanner input = new Scanner(System.in); // create a new object scanner
System.out.println("Welcome to the even or odd program enter your number: "); // prints message to console
EvenOrOdd = input.nextInt(); // sets input of number to EvenOrOdd
int Number = isEven(EvenOrOdd); // EvenOrOdd gets passed to method
while (Number != 0)
{
int CheckMe = isEven(EvenOrOdd);
if (CheckMe == 0)
{
System.exit(0);
}
if(CheckMe > 0)
{
System.out.println("Your Number is Even");
}
else
{
System.out.println("Your Number is odd");
}
System.out.println("Enter the next number? (Type 0 to exit)");
EvenOrOdd = input.nextInt();
} // end of the while loop
} // end of main method
/****************Method isEven*********************/
public static int isEven(int CheckMe)
{
if (CheckMe % 2 == 0)
{
return CheckMe;
}
else
{
CheckMe = -1;
return CheckMe;
}
}// end of isEven method
}// end of class
I always had a passion for the field of STEM (Science, Technology, Engineering, and Math) and I knew I wanted to do something to make a difference in the world. I just didn’t know where to start. I was an immigrant in a new country, grew up in a tough environment, and wasn’t sure how… Read More