Skip to content

Instantly share code, notes, and snippets.

@Devcodpanda
Created May 3, 2020 14:02
Show Gist options
  • Save Devcodpanda/c00086bb914eeb5dc5dbc414268ca5e0 to your computer and use it in GitHub Desktop.
Save Devcodpanda/c00086bb914eeb5dc5dbc414268ca5e0 to your computer and use it in GitHub Desktop.
class IndianaJ {
public static void main(String[] args) {
String originalName = "Indiana Jones and the Last Crusade";
boolean seen = true;
int publicationDate = 1989;
double movieRating = 8.2;
System.out.println("Le nom du film en VO est " + originalName + ".");
if (seen) {
System.out.println("J'ai vu le film.");
}
else {
System.out.println("Je n'ai pas vu le film.");
}
System.out.println("Le film est sorti en salle en " + publicationDate + ".");
System.out.println("La note du film sur le site IMDB est " + movieRating + ".");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment