Questo codice e copiato da una guida di html,ma il problema e un altro...
Copiato su code:b locks mi da errore non me lo compila??
Quale potrebbe essere il problema?
codice:
#include <iostream.h>

int main()
{
int numero_corrente = 12;


while (numero_corrente < 23)
{
cerr << numero_corrente << endl;
numero_corrente = numero_corrente + 2;
}

cerr << "Fine del Programma!" << endl;
}
Gli errori che mi segnala sono 5
error: `cerr' undeclared (first use in this function)|
error: (Each undeclared identifier is reported only once|
error:for each function it appears in.)|
error: `endl' undeclared (first use in this function)|
||=== Build finished: 5 errors, 0 warnings ===|