Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as Java by hgates ( 6 years ago )
/**
 * Woohoo Christmas time!
 * @hgates
 * @12/21/20
 */
import java.util.Scanner;
public class Christmas
{
    public static void main(String [] args)
    {
        Scanner in = new Scanner(System.in);
        System.out.println("Are you valid or are you buggin?");
        System.out.println("Please enter an integer between 1 and 10 to see if you are valid pr buggin  ");
        
        int userInt = in.nextInt();
        if(userInt == 7)
        {
            System.out.println("You are valid, you are sanctioned");
        }
        else 
        {
            System.out.println("You are BUGGIN out fugisyoutalkinbout");
            
        }
   }
}

 

Revise this Paste

Your Name: Code Language: