Skip to content

Instantly share code, notes, and snippets.

@sakti
Created November 26, 2010 05:15
Show Gist options
  • Save sakti/716304 to your computer and use it in GitHub Desktop.
Save sakti/716304 to your computer and use it in GitHub Desktop.
axis jws webservice untuk calculator client
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