-
Lenguaje
C
-
Descripción
Obtener el valor de Y de la ecuación: y = x² - 2x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float x, y;
printf ("Ingresa el valor de x: ");
scanf ("%f", &x);
(void) getchar ();
y=x*x-2.0*x;
printf ("Valor de y: %g\n", y);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float x, y;
printf ("Ingresa el valor de x: ");
scanf ("%f", &x);
(void) getchar ();
y=x*x-2.0*x;
printf ("Valor de y: %g\n", y);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}