Assignemnt #15 Using Variables
Code
/// Name: Jake Johnson
/// Period: 7
/// Program Name: Using Variables
/// File Name: UsingVariables.java
/// Date Finished: 9/14/2015
public class UsingVariables
{
public static void main ( String[] args)
{
int room;
double e;
String compsci;
room = 113;
e = 2.71828;
compsci = "Computer Science";
System.out.println("This is room #" + room + ".");
System.out.println("e is close to " + e + ".");
System.out.println("I am learning a bit about " + compsci + ".");
}
}
Picture of the output