Okey , this is what happends , when I write in my code and compile it this error shows up. http://data.fuskbugg.se/dipdip/Problem%20med%20c%2B%2B%20script.jpg
And after recieving this error I can't run it ofcourse... , I got the code from a book " Learn c++ in 3 weeks" I copied the code and watched if I made something wrong 100 times but I keep getting errors , here's the code.
// Lista 2.2 - använda cout
#inculde <iostream.h>
int main()
{
cout << "Hallå där.\n";
cout << "Här är 5: " << 5 << "\n";
cout << "endl lägger in en ny rad på skärmen.";
cout << endl;
cout << "Här kommer ett stort tal:\t" << 70000 << endl;
cout << "Summan av 8 och 5 är:\t" << 8+5 << endl;
cout << "Här kommer ett bråktal:\t\" << (float) 5/8 << endl;
cout << "Och här kommer ett väldigt, väldigt stor tal:\t";
cout << (double) 7000 * 7000 << endl;
cout << "Jag är en c++ programmerare!\n";
system("PAUSE");
return 0;
}
Sorry for the swedish language, but what the hell do I do wrong? , one more thing I opened the project as console project it should be? cause it's opening <iostream.h> ? Well I have no Idea. I allso tryed compiling it in both visual c++ 2010 and dev-c++. Please help :/!