Test

"Java Stuty"

Posted by Chungman on March 8, 2021

package kr.ac.kopo.lecture1;

/*

  • 클래스, 변수, 메소드개수?
  • 클래스 Test, System, String : 3개
  • 변수 num, args, out : 3개
  • 메소드 main(), println() : 2개 */

public class Test {

1
2
3
4
5
6
7
8
public static void main(String[] args) {
	// TODO Auto-generated method stub

	int num = 10;
	
	System.out.println("Hello World");
	System.out.println(num);
}

}