fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int numero;
  5.  
  6. printf("introduce un numero entero");
  7. scanf("%d",&numero);
  8.  
  9. if(numero < 0){
  10. printf("has introducido %d.\n", numero);
  11.  
  12. }
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.01s 5284KB
stdin
9
stdout
introduce un numero entero