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