Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class SecretSentence {
  2. public static String writeSecretSentence(String PARAMETRE_1, String PARAMETRE_2)
  3. {
  4. return PARAMETRE_1 + " s'incline face à " + PARAMETRE_2 + ". <br/>";
  5. }
  6. public static void main(String[] args) {
  7. System.out.println(writeSecretSentence ("loutre", "totem"));
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement