Select Menu

Search This Blog

Populer Posts Hari ini

Popular Posts

Powered by Blogger.

Lorem 1

adsense

" });

Circle Gallery

" });

News

" });
/*
 * 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 classobjects;
class Student{
int Nim;
String Nama;
int Umur;

public void setNim(int N){
    this.Nim=N;
}

public void setNama(String N){
    this.Nama=N;
}

public void setUmur(int U){
    this.Umur=U;
}
public void InfoStudent(){
    System.out.println("Nim \t:"+Nim);
    System.out.println("Nama \t:"+Nama);
    System.out.println("Umur \t:"+Umur);
}
}

/**
 *
 * @author andi m
 */
public class ClassObjects {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Student A=new Student();
        A.setNim(2343216);
        A.setNama("Andy Moer");
        A.setUmur(19);
        A.InfoStudent();
    }
   
}

-
/*
 * 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 constructorjava;
class LuasSegitiga{
    int panjang;
    int tinggi;
    int lebar;
   public void LuasSegitiga(int p,int l,int t){
       this.panjang=p;
       this.lebar=l;
       this.tinggi=t;
   }
   public int luas(){
       return (panjang*tinggi*lebar);
   }
}

/**
 *
 * @author andi m
 */
public class ConstructorJava {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        LuasSegitiga A=new LuasSegitiga();
        A.LuasSegitiga(4, 4, 4);
        System.out.println(A.luas());
    }
 
}

-
/*
 * 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 prosedurdanfungsi;

/**
 *
 * @author andi m
 */
public class ProsedurDanFungsi {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        jumlah(5,5,5);
        System.out.println(jumlahFungsi(5,5,5));
    }
    //prosedur
    public static void jumlah(int a,int b,int c){
        System.out.println(a+b+c);
    }
    //fungsi
    public static int jumlahFungsi(int a,int b,int c){
     return a+b+c;
    }
}

- -

package tahunkabisat;
import java.util.Scanner;

public class Tahunkabisat {

    public static void main(String[] args) {
       int tahun;
       Scanner input = new Scanner(System.in);
       System.out.print("tahun =");
       tahun =input.nextInt();
       if((tahun %100 != 0 || tahun%400==0 )&& (tahun %4==0)){
           System.out.println(tahun+ " adalah tahun kabisat");
       }
       else{
           System.out.println(tahun+ " adalah bukan kabisat ");
       }
    }
}

- -


package input;

import java.util.Scanner;
public class Input {
    public static void main(String args[]){
        Scanner input = new Scanner( System.in );
        System.out.print( "Nama: " );
        String nama = input.next();
        System.out.print( "Umur: " );
        int umur = input.nextInt();
        System.out.println("Hello "+nama);
        System.out.println("Umur kamu : "+umur);
    }
}

-