Assignment #15 and Using Variables
Code
///Name: Trent Lane
///Period: 6
///Program Name: UsingVariables
///Date Finished: 9/15/15
public class UsingVariables
{
public static void main( String [] args )
{
int myRoom;
double myNumb;
String myName;
myRoom = 113;
myNumb = 2.71828;
myName = "Computer Science";
System.out.println( "This is room # " + myRoom + ".");
System.out.println( "e is close to " + myNumb + ".");
System.out.println( "I am learning a bit about " + myName + ".");
}
}
Picture of the output