21/10/2015

C++ Program To Read Integer (N) And Print First Three Powers (N^1,N^2,N^3)

Problem :- Write A C++ Program To Read Integer (N) And Print First Three Powers (N^1,N^2,N^3) Example If user Enter a 5 From Keyboard Then Output Should be 5 ,25 ,125 Means power of number in 1 ,2 ,3

Logic :- For this problem We Need to multiply Number or we can use power function for that take a example for better understood this problem take a Number 5 as input and multiply with same number again like 5*5 for cube we need to again multiply with same number like 5*5*5 or we can use power function 

Power Function  Syntax ;- for given example  xy .

pow(x,y)

also define the datatype of x and y .

See Also :- C Program To Read Integer (N) And Print First Three Powers (N^1,N^2,N^3)

Solution :-

Method 1 :- Simple Without Using Power Function

#include<bits/stdc++.h>
using namespace std;
int main()
{
/*Program By Ghanendra Yadav
    Visit http://www.programmingwithbasics.com/
    */
  int num;
  cout<<"\nEnter The Number .\n";
  cin>>num;
  cout<<"\nOutpout is \n";
  cout<<num<<"  ,"<<num*num<<"  ,"<<num*num*num<<endl;
  return 0;

}

Method 2 :- Using Power Function

#include<bits/stdc++.h>
using namespace std;
int main()
{
/*Program By Ghanendra Yadav
    Visit http://www.programmingwithbasics.com/
    */
  int num,a,b,c;
  cout<<"\nEnter The Number .\n";
  cin>>num;
  a=pow(num,1);
  b=pow(num,2);
  c=pow(num,3);
  cout<<"\nOutpout is \n";
  cout<<a<<"  ,"<<b<<"  ,"<<c<<endl;
  return 0;
}

See Also :- Java Program To Read Integer (N) And Print First Three Powers (N^1,N^2,N^3)

Output:-


C++ Program To Read Integer (N) And Print First Three Powers (N^1,N^2,N^3)

C++ Program To Read Integer (N) And Print First Three Powers (N^1,N^2,N^3)



Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: