Com Fazer A Raiz Quadrada Em C++ Code Example


Example: com fazer a raiz quadrada em c++

#include <stdlib.h> #include <stdio.h> #include <math.h>  /* square root of a number */  int main(){ float num, raiz; printf("enter a number: \t"); scanf("%f",&num); raiz = sqrt(num); printf("The square root of %f is: %f.\n", num, raiz); system("pause"); return 0;     }

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?