wildantechnoart77

Mendeklarasikan Variable

Jan 24th, 2017
617
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class Tutorial3JAVA {
  2.   public static void main(String[] args){
  3.  
  4.  //Membuat Sebuah Variable dengan Value/Nilai
  5.    String namasaya = "Wildan";
  6.    int umur = 18;
  7.  
  8.     System.out.println(namasaya);
  9.     System.out.println(umur);
  10.   }
  11. }
Add Comment
Please, Sign In to add comment