Created
November 26, 2010 05:15
-
-
Save sakti/716304 to your computer and use it in GitHub Desktop.
axis jws webservice untuk calculator client
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Hitung | |
{ | |
public double tambah(double a, double b) | |
{ | |
return a + b; | |
} | |
public double kurang(double a, double b) | |
{ | |
return a - b; | |
} | |
public double kali(double a, double b) | |
{ | |
return a * b; | |
} | |
public double bagi(double a, double b) | |
{ | |
return a / b; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment