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 paigethornton ( 5 years ago )
/**
 * This program should print a String Variable
 * 
 */

public class StringVarHW
{
    public static void main(String[] args)
    {
        String word1 = "tennis";
        String word2 = "Mondays";
        
        System.out.println("I play " + word1 + " on " + word2); 
        
    }
}

 

Revise this Paste

Your Name: Code Language: