Advertisement
Guest User

Untitled

a guest
May 27th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class Main {
  2. public static void main(String[] args) {
  3. System.out.println("メソッド呼び出し");
  4. hello();
  5. System.out.println("メソッド呼び出し終わり");
  6. }
  7. public static void hello() {
  8. System.out.println("こんにちは");
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement