Guest User

Untitled

a guest
Apr 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public class secretSentence {
  2.  
  3. String writeSecretSentence(String param1,String param2){
  4. return param1 + " s'incline face à " + param2;
  5. }
  6.  
  7. public static void main(String[] args){
  8. Secret secret = new Secret
  9. System.out.println(secret.writeSecretSentence("Le chat", "la lune"));
  10. System.out.println(secret.writeSecretSentence("Le chien", "le soleil"));
  11. }
  12. }
Add Comment
Please, Sign In to add comment