char digit;
cout << "Enter digit:" << endl;
cin >> digit;
cout << ((digit >= 48 && digit <= 57) ? "Digit" : "Another symbol") << endl;
system("pause");
cout << "Enter digit:" << endl;
cin >> digit;
cout << ((digit >= 48 && digit <= 57) ? "Digit" : "Another symbol") << endl;
system("pause");
Комментариев нет:
Отправить комментарий