原因:
#include<iostream.h>是原来的C语言里面的。
而#include<iostream>是c++的标准库里的,而要调用这个这个标准库需要: using namespace std;
解决方法:
#include<iostream.h>
改为
#include<iostream>
using namespace std;
问题解决