Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Ecuación de segundo grado
//Title of this code //clang // ecuación de segundo grado #include <stdio.h> #include <math.h> int main(void) { double a, b, c, r1, r2; double aux; printf("\nteclea a:"); scanf(" %lf", &a); printf("\nteclea b:"); scanf(" %lf", &b); printf("\nteclea c:"); scanf(" %lf", &c); aux = b*b-4*a*c; if (aux<0) printf("Son raíces complejas!!"); else { r1 = (-b + sqrt(aux))/(2*a); r2 = (-b - sqrt(aux))/(2*a); printf("\n La primera raiz vale %6.3lf\n", r1); printf("\n La segunda raiz vale %6.3lf\n", r2); } printf("\nFin del programa de ecuaciones"); return 0; }
run
|
edit
|
history
|
help
0
Bucles: Ver si un número es primo
Teylor
lab7
Code
definice funkce
C
Cviceni 7 1 uloha ++upper,isupper
Pointer_Indirectare_N
Bucles: Triángulo de asteriscos lateral izquierdo
Lee hora y suma un segundo