-
Lenguaje
C
-
Descripción
Determinar el tipo de tarjeta de crédito que se le asigna a un cliente según:
- Si sus ingresos están entre $5,000 y $10,000 recibe una Master Card.
- Si sus ingresos están entre $10,000 y $20,000 recibe una VISA Local.
- Si es superior a $20,000 recibe una VISA Internacional.
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 ingresos;
printf ("Ingresa el valor de ingresos: ");
scanf ("%f", &ingresos);
(void) getchar ();
if(ingresos<5000)
printf ("Ninguna\n");
if(ingresos>=5000&&ingresos<10000)
printf ("Master Card\n");
if(ingresos>=10000&&ingresos<20000)
printf ("VISA Local\n");
if(ingresos>=20000)
printf ("VISA Internacional\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float ingresos;
printf ("Ingresa el valor de ingresos: ");
scanf ("%f", &ingresos);
(void) getchar ();
if(ingresos<5000)
printf ("Ninguna\n");
if(ingresos>=5000&&ingresos<10000)
printf ("Master Card\n");
if(ingresos>=10000&&ingresos<20000)
printf ("VISA Local\n");
if(ingresos>=20000)
printf ("VISA Internacional\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}