Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. class Sample_method_1{
  2. public static void main(String[] args){ // メインメソッド
  3. helloworld(); //helloworldメソッド呼び出し
  4. }
  5.  
  6. public static void helloworld(){ //メソッドの定義 メソッド名 :helloworld
  7. System.out.println("hello world"); //コンソールにhello worldと出力する
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement