Skip to content

Instantly share code, notes, and snippets.

@merbussa
Created November 27, 2014 09:03
Show Gist options
  • Save merbussa/f584d8da464bbad8f694 to your computer and use it in GitHub Desktop.
Save merbussa/f584d8da464bbad8f694 to your computer and use it in GitHub Desktop.
public class kup
{
public static void main(String[] args)
{
hesapla(5);
}
static void hesapla(int a)
{
System.out.println(a*a*a);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment