bin554385863 发表于 2019-8-16 21:58:00

C++ isdigit()函数判断总是失败

#include <iostream>
#include <vector>
#include <cctype>
/*使用迭代器将输入的数字翻倍输出*/
int main(int argc, char const *argv[])
{
    using namespace std;
    vector<int> intvec;
    int num;
    while (true)
    {
      cin >> num;
      if (isdigit(num) == false)
      {
            cout << "请输入数字";
            return 0;
      }
      else
      {
            intvec.push_back(num);
      }
    }
    for (vector<int>::iterator it = intvec.begin(); it != intvec.end(); it++)
    {
      *it = *it * 2;
      cout << *it << " ";
    }
    return 0;
}

================================================================
Microsoft Windows [版本 10.0.16299.1087]
(c) 2017 Microsoft Corporation。保留所有权利。

E:\Users\86184\Documents\Code>c:\Users\86184\.vscode\extensions\ms-vscode.cpptools-0.24.1\debugAdapters\bin\WindowsDebugLauncher.exe --stdin=Microsoft-MIEngine-In-i5bnrlvh.e55 --stdout=Microsoft-MIEngine-Out-rlpohguy.vkx --stderr=Microsoft-MIEngine-Error-eqxkhtqr.pkz --pid=Microsoft-MIEngine-Pid-yrcfdwzl.yf3 "--dbgExe=E:\My Program\MinGW\bin\gdb.exe" --interpreter=mi
1
请输入数字
E:\Users\86184\Documents\Code>cmd /C "c:\Users\86184\.vscode\extensions\ms-vscode.cpptools-0.24.1\debugAdapters\bin\WindowsDebugLauncher.exe --stdin=Microsoft-MIEngine-In-afxh0tze.ilw --stdout=Microsoft-MIEngine-Out-fsbwxlxd.2hv --stderr=Microsoft-MIEngine-Error-mq4c3v2h.ekm --pid=Microsoft-MIEngine-Pid-w5t1luki.ssg "--dbgExe=E:\My Program\MinGW\bin\gdb.exe" --interpreter=mi "
a
请输入数字
E:\Users\86184\Documents\Code>cmd /C "c:\Users\86184\.vscode\extensions\ms-vscode.cpptools-0.24.1\debugAdapters\bin\WindowsDebugLauncher.exe --stdin=Microsoft-MIEngine-In-fodhbny2.yxx --stdout=Microsoft-MIEngine-Out-i14bx3xi.0gu --stderr=Microsoft-MIEngine-Error-lisksg1x.ezf --pid=Microsoft-MIEngine-Pid-01hw3fvy.ppi "--dbgExe=E:\My Program\MinGW\bin\gdb.exe" --interpreter=mi "
1 2 3 4 5 6
请输入数字
E:\Users\86184\Documents\Code>
----------------------------------------------------------------------------------------
为什么会数字判断失败呢?头大!

迷雾少年 发表于 2019-8-16 22:17:50

本帖最后由 迷雾少年 于 2019-8-16 22:19 编辑

isdigit()
这是根据参数里的数据是否在'0' - '9' 范围(ascii码)
你输入1 2 3 4
int num;

num=1;
num=2;
num=3;

肯定不在 '0'-'9'的ascii码表的范围里啊

bin554385863 发表于 2019-8-16 22:56:24

迷雾少年 发表于 2019-8-16 22:17
isdigit()
这是根据参数里的数据是否在'0' - '9' 范围(ascii码)
你输入1 2 3 4


{:5_99:}
那应该怎么判断

迷雾少年 发表于 2019-8-16 22:58:21

bin554385863 发表于 2019-8-16 22:56
那应该怎么判断

int num;

char num;

bin554385863 发表于 2019-8-16 23:11:00

迷雾少年 发表于 2019-8-16 22:58


char不行
上下文对不上

迷雾少年 发表于 2019-8-16 23:16:26

bin554385863 发表于 2019-8-16 23:11
char不行
上下文对不上

可以的,你这程序逻辑也有问题,把数字都push进vec后 遇到不是数字就return了?下面迭代输出过程没了?

下面这段代码VS2019编译运行没问题

#include <iostream>
#include <vector>
#include <cctype>
/*使用迭代器将输入的数字翻倍输出*/
int main(int argc, char const* argv[])
{
        using namespace std;
        vector<int> intvec;
        char num;
        while (true)
        {
                cin >> num;
                if (isdigit(num) == false)
                {
                        cout << "请输入数字";
                        break;
                }
                else
                {
                        intvec.push_back(num);
                }
        }
        for (vector<int>::iterator it = intvec.begin(); it != intvec.end(); it++)
        {
                *it = *it - '0';
                *it = *it * 2;
                cout << *it << " ";
        }
        return 0;
}


输入输出

1
2
3
4
5
6
#
请输入数字2 4 6 8 10 12 请按任意键继续. . .

bin554385863 发表于 2019-8-16 23:21:28

迷雾少年 发表于 2019-8-16 23:16
可以的,你这程序逻辑也有问题,把数字都push进vec后 遇到不是数字就return了?下面迭代输出过程没了?
...

主要是输入的数字不可能是一位数,也可能是四位数五位数,这样char就对不上了

迷雾少年 发表于 2019-8-16 23:32:59

bin554385863 发表于 2019-8-16 23:21
主要是输入的数字不可能是一位数,也可能是四位数五位数,这样char就对不上了

本来isdigit就是判断一个字符一个字节的 ,估计你应该是想以字符串的方式输入 然后判断这串字符串是不是纯粹的全是数字

bin554385863 发表于 2019-8-16 23:38:29

迷雾少年 发表于 2019-8-16 23:32
本来isdigit就是判断一个字符一个字节的 ,估计你应该是想以字符串的方式输入 然后判断这串字符串是不是 ...

emmm
我这是想
以判断输入的数据是否是数字作为循环读取的结束条件
,然后使用迭代器翻倍输出

迷雾少年 发表于 2019-8-16 23:40:39

bin554385863 发表于 2019-8-16 23:38
emmm
我这是想
以判断输入的数据是否是数字作为循环读取的结束条件


你这个isdig的函数只能判断一个字节的数据是否是正常的ASCII码字符数字,你那什么四位数五位数哪止1字节
页: [1]
查看完整版本: C++ isdigit()函数判断总是失败