×
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
3008    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
As long as I live, so long do I learn
Sri Sri Ramakrishna Paramahamsa
53
59.22
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     44271
01/01/2018     36694
25/06/2018     36199
28/06/2017     34734
02/08/2017     33284
01/08/2017     27699
06/07/2017     27446
15/05/2017     27055
14/07/2017     22750
11/09/2018     21388
softetechnologies