algorithm for calculating and displaying the square and cube of a given number?
Explain it?????
plzzzzzz
Answers
Answered by
0
Answer:
\
/*C program to print square, cube and square root of all numbers from 1 to N.*/
#include <stdio.h>
#include <math.h>
int main()
{
int i,n;
printf("Enter the value of N: ");
scanf("%d",&n);
printf("No Square Cube Square Root\n",n);
for(i=1;i<=n;i++)
{
printf("%d \t %ld \t %ld \t %.2f\n",i,(i*i),(i*i*i),sqrt((double)i));
}
return 0;
}
Similar questions