-
Lenguaje
C
-
Descripción
Indicar su edad el año entrante. Se lee edad actual.
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)
{
int edad_actual, edad_entrante;
printf ("Ingresa el valor de edad actual: ");
scanf ("%d", &edad_actual);
(void) getchar ();
edad_entrante=edad_actual+1;
printf ("Valor de edad entrante: %d\n", edad_entrante);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int edad_actual, edad_entrante;
printf ("Ingresa el valor de edad actual: ");
scanf ("%d", &edad_actual);
(void) getchar ();
edad_entrante=edad_actual+1;
printf ("Valor de edad entrante: %d\n", edad_entrante);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}