16/12/2008, 11:45
|
| | Fecha de Ingreso: diciembre-2008 Ubicación: Vigo, Spain
Mensajes: 141
Antigüedad: 16 años, 1 mes 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;
}
|