Computer Science, asked by marvyimade, 10 months ago

Write BASIC program to compute the square root of numbers from 10-20.

Answers

Answered by izmahilalkhan08
0

Answer:

#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;

}

Answered by BrainlyHero80
2

{\overbrace{\underbrace{\red{ANSWER}}}}

\green{\tt{\mapsto The \ answer \ is \ Python}}

&lt;font color=blue&gt;

&lt;marquee&gt;

Hope it's helps you

Similar questions