Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Titulo Atividade: Funções na prática com padlet
- * Objetivo do programa: EXEMPLO: Calculadora básica com 4 operações
- * Nomes dos autores com RA: Wagner Cipriano (875433456), André Dias
- * Data: 12/05/2020
- */
- #include <iostream>
- #include <cmath>
- using namespace std;
- //Protótipo: assinaturas das função (declaração)
- float delta(float a, float b, float c);
- float calc_raizes(float a, float b, float delta, float &x1, float &x2);
- int main() {
- float a, b, c, d, x1, x2;
- cout << "Digite o coeficientes a,b,c: ";
- cin >> a << b << c;
- d = delta(a, b, c);
- x1, x2 = calc_raizes(a, b, d);
- cout << "X1: " << x1 << "\nX2: " << x2 << endl;
- return 0;
- }
- float calc_raizes(float a, float b, float delta, float &x1, float &x2) {
- x1 = (-b + sqrt(delta)) / (2*a);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement