Hi, I have a question with some code. I am making a simple cheesy little program that changes any int that a user inputs into that numbers binary value. Here is a sample of my code:
int number
System.out.print("Type an int from 1 to 99: ");
number = InputOutput.getInt();
switch (number)
{
case 1: System.out.println("10000000");
break;
case 2: System.out.println("01000000");
break;
case 3: System.out.println("11000000");
break;
Is there any way to make this code easier or should i say shorter to write instead of one gigantamous switch statement? and one last thing, if i asked the user if they wanted to type another int, and they said yes, how would i loop the program?
Thanks.