1. 創建公共類

修改:
* public
選項:
* public static void main(String[] args)
* Generate comments
2. 查看目錄

3. 編寫程序
~~~
/**
*
*/
package helloword_01;
/**
* @author Administrator
*
*/
public class Add {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int i = 5;
int j = 10;
System.out.println(i+j);
}
}
~~~
4. 運行程序
