大神帮帮我这个菜鸟:提示错误cout和endl未声明的标识符
// myfirst.cpp : 定义控制台应用程序的入口点。
#include <iostream>
#include "stdafx.h"
using namespace std;
int main()
{
cout << "Come up and C++ me some time.";
cout << endl;
cout<<"You won't regedit it!"<<endl;
return 0;
}