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<stdio.h>
#include<math.h>
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
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;
}
Method 2 :- Using Power Function
#include<stdio.h>
#include<math.h>
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
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;
}
See Also :- Java Program To Read Integer (N) And Print First Three Powers (N^1,N^2,N^3)
Output:-
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<stdio.h>
#include<math.h>
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
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;
}
Method 2 :- Using Power Function
#include<stdio.h>
#include<math.h>
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
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;
}
See Also :- Java Program To Read Integer (N) And Print First Three Powers (N^1,N^2,N^3)
Output:-
#include
ReplyDeleteint main()
{
int num,a,b,c;
printf("\nEnter The Number .\n");
scanf("%d",&num);
a= num;
b=num*a;
c=b*num;
printf("\nOutput Is\n\n");
printf("%d ,%d ,%d \n\n",a,b,c);
return 0;
}
#include
ReplyDelete#include
int main(void)
{
int integer,number,i;
printf("Enter the integer:");
scanf("%d" , &integer);
for(i=1;i<=3;i++)
{
number=pow(integer,i);
printf("Entered integer %d 's %d power is:%d\n", integer,i,number);
}
return 0;
}