Skip to content

Instantly share code, notes, and snippets.

@51enra
Created November 18, 2019 12:12
Show Gist options
  • Save 51enra/188378e998a3973f8bee0c7b9a419d3f to your computer and use it in GitHub Desktop.
Save 51enra/188378e998a3973f8bee0c7b9a419d3f to your computer and use it in GitHub Desktop.
Quest 3 Java Variables
class IndianaJones {
public static void main(String[] args) {
String movieName = "Indiana Jones and the last crusade";
boolean seenMovie = false;
int releaseYear = 1989;
float movieRating = 8.2f;
String seenText;
if (seenMovie == true) {seenText = "Ja";} else {seenText = "Nein";};
System.out.println("Name des Films: " + movieName);
System.out.println("Habe ich ihn gesehen: " + seenText);
System.out.println("Wann herausgekommen: " + releaseYear);
System.out.println("IMDB Rating: " + movieRating);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment