Código C++ – Triángulo de Pitágoras

// Codificado por: Beastieux // Codigo fuente: Triángulo de Pitágoras #include <iostream> #include <math.h> using namespace std; int main() { cout << "TRIANGULO DE PITAGORAS" << endl << endl; float a, b, c; cout << "Ingrese el Primer cateto" << endl; cin >> a; cout << "Ingrese el Segundo cateto" << endl; cin >> b; … Continuar leyendo Código C++ – Triángulo de Pitágoras