-
Lenguaje
C
-
Descripción
Dado como dato una variable X de tipo entero, obtenga el resultado de la función Y, de manera que:
Y = 100X Cuando X<0
Y = 2X+5 Cuando 0<=X<3
Y = 100/X Cuando 3<=X<=6
Y = 0 Para cualquier otro valor.
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)
{
int X, Y;
printf ("Ingresa el valor de X: ");
scanf ("%d", &X);
(void) getchar ();
Y=0;
if(X<0)
Y=100*X;
if(0<=X&&X<3)
Y=2*X+5;
if(3<=X&&X<=6)
Y=100/X;
printf ("Valor de Y: %d\n", Y);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int X, Y;
printf ("Ingresa el valor de X: ");
scanf ("%d", &X);
(void) getchar ();
Y=0;
if(X<0)
Y=100*X;
if(0<=X&&X<3)
Y=2*X+5;
if(3<=X&&X<=6)
Y=100/X;
printf ("Valor de Y: %d\n", Y);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}