Files
OOP-Cpp/oop_hw1/oop_hw1_5/testchar.cpp
2025-08-11 00:01:30 +08:00

3 lines
61 B
C++

bool is_digit(char ch) {
return ch >= '0' && ch <= '9';
}