You are on page 1of 1

/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package erwan.rahmadi.g.pkg101.pkg10.

pkg041; /** * * @author Mr.Prince */ public class Arimatika { public int perjumlahan (int a, int b){ int c = a+b; return c; } public int pengurangan (int a, int b){ int c = a-b; return c; } public double perkalian (double a, double b){ double c = a*b; return c; } public double pembagian (double a, double b){ double c = a/b; return c; } public int sisabagi (int a, int b){ return a%b; } public void cetak (int c){ System.out.println(c); } public void cetak (double c){ System.out.println("Hasil dalam desimal = "+c); } } class ArimatikaTest { public static void main (String args[]){ Arimatika ari = new Arimatika(); int c = ari.pengurangan(134,24); ari.cetak(c); double d = ari.perkalian(37.5,15.07); ari.cetak(d); ari.cetak(ari.pembagian(144.24,12)); System.out.println(ari.sisabagi(101,10)); } }

You might also like