Click here to Skip to main content
15,886,518 members
Articles / Programming Languages / C++

A simple program to solve quadratic equations with

Rate me:
Please Sign up or sign in to vote.
2.83/5 (5 votes)
20 May 2010CPOL 11.1K   2  
#include #include #include "Raiz_Cuadratica.h"int main(){ // float xx = 1; float x = 1; float i = -12; RaizCuadratica *lala = new RaizCuadratica( xx, x, i ); RaizCuadratica::sRaiz raiz = lala->GetRaiz(); printf( "x1 = %f || x2 = %f\n\n",...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Junior) RB Argentine Software
Argentina Argentina
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions