Assignemnt #15 Using Variables
Code
/// Name: Tyler Hart
/// Period: 5
/// Program Name: Using Variables
/// File Name: UsingVariables.java
/// Date Finished: 9/10/2015
public class UsingVariables
{
public static void main( String[] args )
{
int n;
double cats;
String CS;
n= 113;
cats = 2.71828;
CS = "Computer Science";
System.out.println(n + " was a spartan 1" );
System.out.println(n + " loved cats he had " + cats + "x10^5" );
System.out.println(n + " would of never been a thing without " + CS);
}
}
Picture of the output