在我的旧计算机(将近15年)中,我使用MsDos和Borland C ++编译器。 问题是,
#include <iostream.h>
有效但是
#include <iostream>
using namespace std
这在这里不起作用。
有什么方法可以在MsDos上使用现代IDE
答案 0 :(得分:3)
Borland太老了,它是在C ++标准库存在之前制成的。
当时,C ++的有效标准是ARM,这是Bjarne Stroustrup和Margaret Ellis编写的带注释的参考手册,其名称为<iostream.h>
。
随着1998年的第一个标准化,<iostream.h>
被删除,而仅由<iostream>
取代。
我不知道该说些什么。只需使用<iostream.h>
或更新的编译器即可。