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