编写函数,判断某个给定字符是否为数字。
样例输入
9
样例输出
yes
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <iostream> #include <cctype> using namespace std; int main() { char c; cin >> c; if(isdigit(c)) { cout << "yes"; } else { cout << "no"; } return 0; } |
❤ 点击这里 -> 订阅《PAT | 蓝桥 | LeetCode学习路径 & 刷题经验》by 柳婼