Chương trình đầu tiên - "Hello World ! " trong ngôn ngữ Java
Làm việc với môi trường NETBEAN 7.2
Source code :
DEMO - Output = "String". |
/*
COMMENT
*/
package helloworld;
/**
*
* @author MTS2HT
*/
public class HelloWorld {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println("Hello World! I'm MT");
}
}
//Source code sẽ tương tự ở môi trường Eclipse .!!.
*/
package helloworld;
/**
*
* @author MTS2HT
*/
public class HelloWorld {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println("Hello World! I'm MT");
}
}
//Source code sẽ tương tự ở môi trường Eclipse .!!.