-
Lenguaje
C
-
Descripción
Evalúa la función:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float x, y;
printf ("Ingresa el valor de x: ");
scanf ("%f", &x);
(void) getchar ();
y=0;
if(x<-3)
y=x*x-1;
if(x>=-1&&x<8)
y=x-2;
if(x>=8)
y=3.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=0;
if(x<-3)
y=x*x-1;
if(x>=-1&&x<8)
y=x-2;
if(x>=8)
y=3.0-x;
printf ("Valor de y: %g\n", y);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}