C++
Aqui us deixo un programa per resoldre equacions de segon grau automaticament. Teniu que copiar-ho i enganxar-ho en el programa anomenat devC++ més aball teniu el link
C++
Aqui os dejo un programa para resolver ecuaciones de segundo grado automáticamente. Tienen que copiarlo y pegarlo en el programa llamado devC + + más abajo tenéis el link
C + +
Here I leave a program to solve quadratic equations automatically. You must copy and paste into a program called devC ++ At the end of this message you have the link of the program.
#include <cstdlib>
#include <iostream>
#include <math.h>
using namespace std;
int main(int argc, char *argv[])
{
float x;
float y;
float z;
float t;
float r;
float o;
cin >> x;
cin >> y;
cin >> z;
cin >> t;
cin >> r;
cin >> o;
y=y+sqrt(pow(y,2)-4*x*z)/2*x;
r=r-sqrt(pow(r,2)-4*t*o)/2*t;
cout << x;
cout << y;
cout << z;
cout << t;
cout << r;
cout << o;
system("PAUSE");
return EXIT_SUCCESS;
}
Aqui podreu descarregar-vos el programa
Aqui podreis descargar el programa
Here you dowload the program
http://www.bloodshed.net/dev/devcpp.html
Cap comentari:
Publica un comentari a l'entrada