4常用函数
Posted fuqia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4常用函数相关的知识,希望对你有一定的参考价值。
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; }
以上是关于4常用函数的主要内容,如果未能解决你的问题,请参考以下文章