Computer Science, asked by riyu68, 1 year ago

algorithm for calculating and displaying the square and cube of a given number?

Explain it?????
plzzzzzz​

Answers

Answered by mohitnayak293
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