标签:main 功能 常用 clu nbsp names pre font span
1、isdigit()函数 #include<cctype>
功能:判断字符型是否是数字
#include <iostream> #include <cstdio> using namespace std; int main() { char c;//此时输入的是整型数字 while (cin >> c) { if (isdigit(c)) { cout << c << "是数字" << endl; } else cout << c << "不是数字" << endl; } return 0; }
标签:main 功能 常用 clu nbsp names pre font span
原文地址:https://www.cnblogs.com/fuqia/p/9526223.html