17 lines
337 B
C
17 lines
337 B
C
#include<stdio.h>
|
|
|
|
int main(){
|
|
|
|
int numero1;
|
|
int numero2;
|
|
int numero3, numero4, numero5;
|
|
|
|
numero1=23;
|
|
numero2=56;
|
|
|
|
printf("\nIntroduce un numero entero: ");
|
|
scanf("%d", &numero3);
|
|
|
|
printf("\nLav ariable numero1 tiene un valor %d, numero2 tiene un valor %d y numero3 %d", numero1, numero2, numero3);
|
|
|
|
} |