Skip to content

Instantly share code, notes, and snippets.

@rawaludin
Created February 12, 2013 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rawaludin/4759222 to your computer and use it in GitHub Desktop.
Save rawaludin/4759222 to your computer and use it in GitHub Desktop.
class PabrikSepeda {
public static void main(String[] args) {
Sepeda ThrillAgent = new Sepeda();
ThrillAgent.merk = "Wim Cycle";
ThrillAgent.kecepatan = 0;
ThrillAgent.tambahKecepatan();
ThrillAgent.tambahKecepatan();
ThrillAgent.tambahKecepatan();
ThrillAgent.tambahKecepatan();
ThrillAgent.tambahKecepatan();
ThrillAgent.cetakKecepatan();
System.out.println("Merk sepeda ini adalah "+ThrillAgent.merk);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment