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

43.编写一个程序,判断用户输入的字符是否是数字,若是数字,则输出“a numerical character”

时间:2014-08-08 12:29:45      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   div   amp   

//1、学习到字符输入
//2、判断字符

#include<iostream>
using namespace std;

int main()
{
    char a;
    cout<<"please input a charcter: "<<endl;
    cin>>a;


    if(a>0&&a<9)
    {
        cout<<"it‘s a numerical character!"<<endl;
    }else
    {
        cout<<"it‘s not a numerical character!"<<endl;
    }
    return 0;
}

 

43.编写一个程序,判断用户输入的字符是否是数字,若是数字,则输出“a numerical character”,布布扣,bubuko.com

43.编写一个程序,判断用户输入的字符是否是数字,若是数字,则输出“a numerical character”

标签:style   blog   color   os   io   ar   div   amp   

原文地址:http://www.cnblogs.com/jixiaowu/p/3898964.html

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