Advertisement
Guest User

Untitled

a guest
Aug 24th, 2014
4,420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public class Solution
  2. 04
  3. {
  4. 05
  5. public static void Main(string[] args)
  6. 06
  7. {
  8. 07
  9. String s1 = "Мне так плохо!";
  10. 08
  11. String s2 = "Хочу, чтобы все умерли!";
  12. 09
  13. print(s1, s2);
  14. 10
  15. }
  16. 11
  17. private static void print(String s1, String s2)
  18. 12
  19. {
  20. 13
  21.  
  22. 14
  23. System.out.println(s1 + " " + s2);
  24. 15
  25. }
  26. 16
  27.  
  28. 17
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement