From mboxrd@z Thu Jan 1 00:00:00 1970 From: "alexperi" To: Subject: Fw: Date: Tue, 18 Jul 2000 03:42:00 -0000 Message-id: <20000718104219.894.qmail@hotmail.com> X-SW-Source: 2000-07/msg00098.html I need to read hexadecimal numbers from the keyboard This is my program but as you gather it doesn't work. Need some help. Thanx file://----------------------------------------- #include #include void main() {  char ch;  int x;  cin.setf(ios::hex);  cout.setf(ios::hex);  cin>> ch;  cout << ch; }