我剛剛開始一個C++類,並且正在處理我們的第一個作業。我使用Eclipse,它給我一些問題。這裏是我的代碼:「符號」cin'無法解析「在OS X上的Eclipse錯誤
#include <iostream>
using namespace std;
int main() {
int first, second;
cout<< "Type the first number and press enter.\n";
cin>>first;
cout << "Type the second number and press enter.\n";
cin>>second;
cout<<"The sum of "<<first<<" and "<<second<<" is "<<(first+second)<<", and the product is "<<(first*second)<<endl;
}
我相當確定代碼是好的,應該編譯和運行,但Eclipse給了我一堆的錯誤。對於每個cin和cout語句,我都會收到一個錯誤消息:「符號'cin'/'cout'無法解析。」我也遇到了一個錯誤:「架構x86_64找不到符號」。我正在運行Mac OS X v10.7.2,GNU Make 3.81和i686-apple-darwin11-llvm-g ++ - 4.2(GCC)4.2.1(基於Apple Inc. build 5658)(LLVM build 2336.1。 00)。
就像我說的,我是新的,所以如果你需要更多的信息,請讓我知道。謝謝。
看來您正在嘗試構建64位代碼,並且您沒有爲此安裝庫。 –
我該如何解決這個問題?我安裝了XCode,我的電腦是64位的。 –
這很奇怪,獅子支持64位... – fdh