#include <iostream.h> funktioniert nicht
alle anderen Header funktionieren aber wie gewohnt mit ".h "

also:

#include <iostream>
using namespace std;

int main()
{
cout<<"Hello World"<<endl; // oder anstatt endl; /n;
cin.get(); //<--- ist mir auch neu

return 0;
}