Was Programmieren



  • Nerd aller Nerds schrieb:

    import java.io.*;
    
    public class AnswerToEverything {
    
    	/**
    	 * @param args
    	 * @throws IOException 
    	 */
    	public static void main(String[] args) throws IOException {
    		InputStreamReader isr = new    InputStreamReader(System.in);
            BufferedReader buffer = new BufferedReader(isr); 
            System.out.println("Please input your qeustion? \n");
            String eingabe = buffer.readLine();
            int ergebnis = 22 + 20;
    		
            if (eingabe.equals("Answer to life, the universe and everything."))
            {
            	System.out.println("The answer is: "+ ergebnis);
            }
            else
            {
            	System.out.println("Answer your qeustions yourself!\n");
            }
    				
    
    	}
    
    }
    

    Du bist der Nerdigste!



  • Nerd-Bewertung schrieb:

    Du bist der Nerdigste!

    Translation: The meatbag agrees that you are superior to all other meatba.., a humans.

    Explenation: It's my combative nature, master. I cannot help myself! I'll make it up to you ... allow me to kill something in your honor?


Anmelden zum Antworten