码迷,mamicode.com
首页 > 其他好文 > 详细

4、常用函数

时间:2018-08-23 22:22:19      阅读:294      评论:0      收藏:0      [点我收藏+]

标签: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;

}

 

4、常用函数

标签:main   功能   常用   clu   nbsp   names   pre   font   span   

原文地址:https://www.cnblogs.com/fuqia/p/9526223.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!