Latihan Java
class Handphone
{
// deklarasi
private String merk, tipe, warna;
private double harga;
// setter
public void setMerk(String merk){
this.merk = merk;
}
public void setTipe(String tipe){
this.tipe = tipe;
}
public void setWarna(String color){
this.warna = color;
}
public void setHarga(double harga){
this.harga = harga;
}
// getter
public String getMerk(){
return merk;
}
public String getTipe(){
return tipe;
}
public String getWarna(){
return warna;
}
public double getHarga(){
return harga;
}
...
Success
Get it in reality, not in a dream
Be Stronger
Stronger than the past
Craete your future
Your way is your choice
Be Faster
Make our move,create our future.
Make your dreams come true
Your dream is a picture of your future
Friday, October 5, 2012
Subscribe to:
Posts (Atom)