Sabtu, 26 Maret 2011

contoh tabel statistika.

contoh program java.

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package bilanganberaksi;

/**
 *
 * @author mcc
 */
public class bilanganberaksi {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
      Bilangan b1 = new Bilangan(50);
      b1.info();

      Bilangan b2 = new Bilangan(15);
      b2.info();

      Bilangan b3 = new Bilangan(30);
      b3.info();
    }

}