其实 <iostream.h>是c风格的,你可用,但注意格式:
要么是:
#include <iostream>
using namespace std;
在标准C++里面,是不用#include <iostream.h>这种形式了,而要使用#include <iostream>
其实 <iostream.h>是c风格的,你可用,但注意格式:
要么是:
#include <iostream>
using namespace std;
在标准C++里面,是不用#include <iostream.h>这种形式了,而要使用#include <iostream>