elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Introducción a la Factorización De Semiprimos (RSA)


  Mostrar Mensajes
Páginas: [1]
1  Seguridad Informática / Seguridad / Re: Nueva encuesta: Mejor Antivirus en: 29 Febrero 2008, 18:03 pm
en la actualidad estoy usando un antivirus llamado clanving y ya que anteriormente tenia el not32 y el kaspersky en uso pero ninguno de los dos me sirvio para elimianr el fastidioso recicler, asi que los cambie por este "clanving" y por el momento esta trabajando bien. no he encontrado un defecto aun.
2  Programación / Programación C/C++ / Re: Novato en C y Dev-c++ en: 28 Febrero 2008, 21:28 pm
NO SE SI TE SIRVA PERO YA QUE YO SOY NUEVO EN ESTO IGUAL Y ME PASABA LO MISMO.

PARA QUE EL PROGRAMA SE QUEDE PAUSADO DESPUES DE SER COMPILADO TIENES QUE AGREGAR AL FINAL ANTES DE CERRAR LA LLAVE } LO SIGUIENTE:

getch ();


CON ESTO SE QUEDARA PAUSADO HASTA QUE PRESIONES UNA TECLA O TERMINES CON TODO LO QUE TENIA QUE HACER TU PROGRAMA.

EJEMPLO:

# include "stdio.h"
# include "conio.h"

int main ()

{
    int n1,n2,r;

      printf ("ingresar el primer numero: ");
      scanf ("%i",&n1);

      printf ("ingresar el segundo numero: ");
      scanf ("%i",&n2);

      r = n1+n2;

      printf ("el resultado de la suma es: %i",r);

getch ();
}



Páginas: [1]
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines