/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package tipedatadanvariabelprogram1;
/**
*
* @author Angga
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String stringKe1 = “Selamat”;
String stringKe2 = “Belajar”;
System.out.println (stringKe1);
System.out.println (stringKe2+”\n”);
System.out.println (stringKe1);
System.out.println (stringKe2);
}
}