main(){ cout << "7+3="<<7+3>> end1; return 0 }为什么运行不了
main(){ cout << "7+3="<<7+3>> end1;// 改为cout << "7+3 = " << 7 + 3 << endl; return 0 }为什么运行不了
還是不行~
你一定是没有包含头文件。(1)VC6.0#include <IOSTREAM.h>(2)VC.net#include <IOSTREAM>using namespace std;