我正在使用code :: blocks。我曾經使用turbo C++ 3.0。C++。與code :: blocks ide相關。 「對象沒有在此範圍內聲明」錯誤
我寫了下面的代碼,並得到一個錯誤,是有點不可能的:
#include<iostream>
#include<conio.h>
int main()
{
using namespace std;
clrscr();
char name[20];
cout<<"\nEnter your name:";
cin.getline(name,20);
cout<<"\nName stored";
clrscr();
cout<<"\nName:"<<name;
getch();
return 0;
}
它表明清點,CIN和clrscr()在此範圍內未聲明的錯誤。我不明白爲什麼會顯示。
我在Turbo C++ 3.0中運行了相同的代碼,這是我之前使用的編譯器。那裏我沒有這樣的錯誤。請幫助糾正這個錯誤。
請告訴我這裏有什麼問題,爲什麼它不工作。
如果您發佈一個有關錯誤的問題,請隨時包括_actual_錯誤,未經編輯。 – 2013-02-17 08:54:20
試試這個解決方法:[如何清除輸出屏幕在Code :: blocks?](http://stackoverflow.com/questions/7938331/how-to-clear-the-output-screen-in-codeblocks? rq = 1) – 2013-02-17 10:04:24