Tema: Newbie
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/12/2008, 11:45
Annoying
 
Fecha de Ingreso: diciembre-2008
Ubicación: Vigo, Spain
Mensajes: 141
Antigüedad: 15 años, 5 meses
Puntos: 12
Respuesta: Newbie

o..

Código:
#include <iostream.h>
#include <stdlib.h>
using namespace std;

int main ()
{
cout << "Hello World!";
system("pause");
return 0;
}
o también..

Código:
#include <iostream.h>
#include <conio.h>
using namespace std;

int main ()
{
cout << "Hello World!";
getch();
return 0;
}