Q:

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

belongs to collection: Basic C Programs for Practice

0

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 .

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Using Power Function

#include<stdio.h>
#include<math.h>
int main()
{
  int num,a,b,c;
  printf("\nEnter The Number .\n");
  scanf("%d",&num);
  a=pow(num,1);
  b=pow(num,2);
  c=pow(num,3);
  printf("\nOutput Is\n\n");
  printf("%d  ,%d  ,%d \n\n",a,b,c);
  return 0;
}

 

Output:

Enter the Number.

10

Output Is

10  ,100  ,1000

need an explanation for this answer? contact us directly to get an explanation for this answer
need an explanation for this answer? contact us directly to get an explanation for this answer

Simple Without Using Power Function

#include<stdio.h>
#include<math.h>
int main()
{
  int num;
  printf("\nEnter The Number .\n");
  scanf("%d",&num);
  printf("\nOutput Is\n\n");
  printf("%d  ,%d  ,%d \n\n",num,num*num,num*num*num);
  return 0;
}

 

Output:

Enter the Number.

5

Output Is

5  ,25 ,125

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (2)

<< C Program To Calculate Factorial Of A Given Number...