SOAL!!!
JAWAB :
Berikut sintax nya
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package hello.world.java;
/**
*
* @author JBrain
*/
public class HelloWorldJava {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
System.out.print("Hello World, Java!");
System.out.println(" Program pertamaku.");
System.out.printf("Modul ke%s nilai:%d\n","-1",99);
// TODO codeSys application logic here
}
OUTPUT :
Post a Comment