请帮我找出为什么我的 devcpp 没有编译我的程序的问题
#include <windows.h>
#include <iostream.h>
int main()
{
using namespace std;
cout << "Hello There please input A number" << endl;
int number;
cin >> number;
if( number >= 2 && number <= 2 )
{
cout << "You have input the wrong number haha" << endl;
}
else
{
cout << "Wow how'd you guessed it?" << endl;
}
system("PAUSE>NUL");
return 23;
}