Advertisement
wagner-cipriano

Função que calcula uma raiz da equação do 2º grau

May 12th, 2020
1,163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.09 KB | None | 0 0
  1. float calc_raiz1(float a, float b, float delta) {
  2.     x1 = (-b + sqrt(delta)) / (2*a);
  3. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement