Created
April 4, 2018 15:25
-
-
Save loloof64/b900a23748c349c7797d90760579424b to your computer and use it in GitHub Desktop.
WilderJones
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public static void main(String[] args) { | |
String filmNameVO = "Indiana Jones and the Last Crusade"; | |
boolean haveISeenThisFilm = true; | |
int releaseYearInBoxOffice = 1989; | |
float filmAverageRating = 8.3f; | |
System.out.println("Film name in VO: "+filmNameVO); | |
System.out.println("Have I seen this film ? "+haveISeenThisFilm); | |
System.out.println("Film release year in Box Office : "+releaseYearInBoxOffice); | |
System.out.println("Film average rating : "+filmAverageRating); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment