我不明白爲什麼這不起作用。出於某種原因,我得到的錯誤:Cin沒有操作數>>
error C2678: binary '>>' : no operator found which takes a left-hand operand of type 'std::istream' (or there is no acceptable conversion)
我在Visual Studio2010 C++快遞這樣做是否有幫助。不知道爲什麼它交給我這個錯誤,我使用cin
做其他節目...
我的代碼:
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
int main(int argc, char* argv){
string file;
if (argc > 1)
{
file = argv[1];
}
else
{
cout << "Please Enter Your Filename: ";
cin >> file;
}
}
'#include' –
2012-04-16 23:20:48