martes, 13 de diciembre de 2016

Funciones que no reciben y no retornan

/*funciones que no reciben y no retornan*/
#include<stdio.h>
#include<math.h>
#include<conio.h>
void FGen1(void);
int main()
{
FGen1();
getch();

}
void FGen1(void)
{
float a, b, c, x1,x2;
printf("Introduce los valores (a,b,c)...\n");
scanf("%f,%f,%f",&a, &b, &c);
x1=(-b+sqrt(pow(b,2)-(4*a*c)))/(2*a);
printf("FGen1=%f \n", x1);
x2=(-b-sqrt(pow(b,2)-(4*a*c)))/(2*a);
printf("FGen2=%f \n", x2);
}

No hay comentarios:

Publicar un comentario