This code is not working correctly, please help me. Even though I entered the right character it keeps asking "enter right number". And it does not evaluate the condition.
#include<iostream>
#include<conio.h>
#include<string>
using namespace std;
int main()
{
char ch = '0';
A:
cout << "enter a Character" << endl;
cin >> ch;
if ((ch != 'X')||(ch != 'x'))
{
cout << "Please Enter Right Number" << endl;
goto A;
}
return 0;
}