Skip to content

Instantly share code, notes, and snippets.

@merbussa
Created November 27, 2014 09:09
Show Gist options
  • Save merbussa/ef3d64a1a2d9b37589b9 to your computer and use it in GitHub Desktop.
Save merbussa/ef3d64a1a2d9b37589b9 to your computer and use it in GitHub Desktop.
import java.util.Scanner;
public class kullanıcıkup
{
public static void main(String[] args)
{
Scanner s=new Scanner(System.in);
System.out.println("Lütfen bir sayı giriniz.");
int a=s.nextInt();
hesapla(a);
}
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