Files
2025-12-31 00:39:23 +08:00

3 lines
61 B
C++

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