| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 798 人关注过本帖
标题:如何判断输入的变量的类型?
取消只看楼主 加入收藏
写在人生边上
Rank: 1
等 级:新手上路
帖 子:35
专家分:0
注 册:2007-11-8
收藏
 问题点数:0 回复次数:0 
如何判断输入的变量的类型?
我定义一个 int 型的变量,当我输入一个字符(例如:字母'A'等等),我希望这个时候程序

   提示我:“你输入的变量的类型与您定义的变量的类型不匹配!请重新输入:”。

   我希望能用C和C++语言实现上述功能。

   我分别用C和C++写了代码,但是都有问题。请高手指点,我在此先谢过了!

代码一:

#include <stdlib.h>
#include <iostream.h>
#include <typeinfo.h>
void main()
{
    int i,t;
        cout<<typeid(i).name()<<endl;
    cout<<"Please input the data:";
    cin>>i;
    if(typeid(i).name()=="int")
    {
        t=0;
        cout<<"1234";
    }
    else
    {
        t=1;
        cout<<"5678";
    }
    while(t)
    {
        printf("The type of the data you input unmatches!\n");
        printf("Please input the data again:");
        cin>>i;
        if(typeid(i).name()=="int")
            t=0;
        else
            t=1;
    }

    system("pause");
}


代码二:

#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
void main()
{
    int j;
    printf("Please input the data:");
    scanf("%d",&j);
    if(isalpha(j))
    {
        printf("The type of the data you input unmatches!\n");
        printf("Please input the data again:");
        scanf("%d",&j);
    }
    printf("\n");
    system("pause");
}
搜索更多相关主题的帖子: 变量 类型 判断 输入 
2008-03-21 22:44
快速回复:如何判断输入的变量的类型?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.066360 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved