Assignment #15 Using Variables
Code
/// Name: Koosha Kimelman
/// Period: 7
/// Program Name: Using Variables
/// File Name: UsingVariables.java
/// Date Completed: 9/11/15
public class UsingVariables {
public static void main( String[] args ) {
int V1;
double V2;
String V3;
V1 = 113;
V2 = 2.71828;
V3 = "Computer Science";
// I couldn't think of any reasonable example sentences so I reused them
System.out.println( "This is room # " + V1 );
System.out.println( "e is close to " + V2 );
System.out.println( "I am learning a bit about " + V3 );
}
}
Picture of the output