Please help Im a noob

I'm having problems with C++ my first program. When ever i type a program in i get a fatal error when i click the play button thing. This is what i type.
// Game Over
// A first C++ program

#include <iosteam>

int main()
{
std::cout << "Game Over!" << std::endl;
return 0;
}

And this is what i get in the Output:

1>------ Build started: Project: FAce, Configuration: Debug Win32 ------
1> FAce.cpp
1>FAce.cpp(1): warning C4627: '#include <iostream>': skipped when looking for precompiled header use
1> Add directive to 'StdAfx.h' or rebuild precompiled header
1>FAce.cpp(2): warning C4627: '#include <conio.h>': skipped when looking for precompiled header use
1> Add directive to 'StdAfx.h' or rebuild precompiled header
1>FAce.cpp(18): fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include "StdAfx.h"' to your source?
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

I dont know what im doing wrong. If some one could tell me i would love them for ever!!!!!!!! or i could be doing something wrong you tell me. :)))

Add #include "StdAfx.h" to the top of your source file. This is required when using the Visual C++ compiler.
Last edited on
Thanks
Topic archived. No new replies allowed.