Created
March 16, 2020 11:45
-
-
Save swann44/da88d41206bfedd7e61955851e848a10 to your computer and use it in GitHub Desktop.
java 3
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
| class DerniereCroisade { | |
| public static void main(String[] args) { | |
| String MovieName = "Indiana Jones and the Last Crusade"; | |
| System.out.println(MovieName); | |
| boolean vueFilm = false; | |
| System.out.println(vueFilm); | |
| int anneeSortie = 1989; | |
| System.out.println(anneeSortie); | |
| float noteFilm = 8.2; | |
| System.out.println(noteFilm); | |
| } | |
| } | |
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
| wilder@wilder-ThinkPad-T440p:~/JavaProjects/DernièreCroisade$ java DerniereCroisade | |
| Indiana Jones and the Last Crusade | |
| false | |
| 1989 | |
| 8.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment