Codigo Fuente en C
#include<math.h>
#include<stdio.h>
#include<conio.h>
int main()
{
clrscr();
float num,sq;
printf("Ingrese un numero para calcular la raiz cuadrada: ");
scanf("%f", &num);
while(getchar() != '\n');
sq=sqrt(num);
printf("\n\nLa raiz cuadrada de %.1f es %.2f", num, sq);
getch();
return 0;
}
Codigo Fuente en C++
#include <iostream>
#include <cstdlib>
#include <conio.h>
#include <math.h>
using namespace std;
int main()
{
float num, sq;
cout<<"Ingrese un numero: ";
cin>>num;
sq=sqrt(num);
cout<<endl<<endl<<"La raiz cuadrada de "<<num<<" es "<<sq<<endl;
system("Pause");
return 0;
}
Resultado
thank you for sharing this post I am glad to be here and read this post is make my day thanks
ResponderEliminarProxy Bunker
libgen
torrentfunk
Isohunt
https://tech.windowsroundup.com/
ResponderEliminar