Wednesday, 21 May 2014

Write A program for "Enter Two Number (Base & Power) Find out the Power"

import java.util.Scanner;

class power
{

      void pow(int c, int d)
     {      
              int n=1;
              for(int i=0;i<d;i++)
              {
                       n=c*n;
              }

              System.out.println(n);
     }
}
public class Head
{
    public static void main(String arg[])
    {
    int a,b;
    Scanner sc = new Scanner(System.in);
    System.out.println("Enter the number you want to get multiplied (Base)");
    a=sc.nextInt();
    System.out.println("Enter the power");
    b=sc.nextInt();
        power c=new power();
        c.pow(a,b);
    }

}

0 comments: