VS2010 无法打开包括文件:“iostream.h”: No such file or directory

来源:互联网 发布:医院预约管理系统php 编辑:程序博客网 时间:2024/05/01 18:38

#include <iostream.h>

改为:

#include <iostream>
using namespace std;

就可以了

0 0