×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
CO Prime Java Program to Exchange Odd Position Element with Even Position Element
calculate the power of the given number in Java - Java
3646    Arnab De    17/12/2018

Write a Java program to calculate the power of the given number. If we send two parameter (a,n) then it return an, but if we send one parameter (a) then it return a2.

Here, we use the function overloading procedure in java. Here, we create two methods called Power. First method with two parameters and another method with one parameter. But the name of the two methods are same.

import java.util.*;
public class JavaPower
{
    public int Power(int a)
    {
            return a*a;
    }
    public int Power(int a,int n)
    {
        int m=1;
        for(int i=0;i<n;i++)
        {
            m=m*a;
        }
        return m;
    }
    public static void main(String []args)
    {
        int a,n;
        Scanner sc=new Scanner(System.in);
        System.out.print("Enter A Number : ");
        a=sc.nextInt();
        System.out.print("Enter A Power : ");
        n=sc.nextInt();
        JavaPower jp=new JavaPower();
        System.out.println( a + " Square = " + jp.Power(a));
        System.out.print(a + " To The Power = " + n + “ : ” + jp.Power(a,n));
    }
} 

CO Prime Java Program to Exchange Odd Position Element with Even Position Element
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Sri Sri Ramakrishna Paramahamsa
Have love for everyone, no one is other than you.
Sri Sri Ramakrishna Paramahamsa
592
82.56
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54430
25/06/2018     45477
01/01/2018     43880
28/06/2017     41396
02/08/2017     40466
01/08/2017     34471
06/07/2017     34251
15/05/2017     33493
11/09/2018     30721
14/07/2017     30201
softetechnologies