gpt4 book ai didi

c++ - 空格后的字符未打印出来

转载 作者:行者123 更新时间:2023-12-01 14:42:10 27 4
gpt4 key购买 nike

我使用字符数组从用户那里获取输入,然后显示输出。但是,每次我输入之间带有空格的值时,仅会打印出空格前的第一个单词。
例如,这是我键入的内容:

Customer No.: 7877 323 2332


这将是输出:

Customer No.: 7877


我已经在寻找可能的解决方案,但似乎找不到正确的解决方案。
这是我的代码供引用:
#include<iostream>
using namespace std;

int main()
{
char custNum[10] = " "; // The assignment does not allow std::string

cout << "Please enter values for the following: " << endl;
cout << "Customer No.: ";
cin >> custNum;

cout << "Customer No.: " << custNum << endl;
}

最佳答案

另一种选择是使用std::basic_istream::getline将整个字符串读入缓冲区,然后使用简单的for循环删除空格。但是,当使用普通的字符数组时,请不要忽略缓冲区大小。太长的1000个字符比太短的1个字符要好得多。根据您的输入,custNum的绝对最小大小为14字符(显示的13加上'\0'(无终止符)字符。(粗略的经验法则,请使用最长的估计输入并将其加倍-以允许用户-错误,猫踩键盘等...)
在这种情况下,您可以执行以下操作:

#include <iostream>
#include <cctype>

int main() {

char custNum[32] = " "; // The assignment does not allow std::string
int wrt = 0;

std::cout << "Please enter values for the following:\nCustomer No.: ";

if (std::cin.getline(custNum, 32)) { /* validate every input */

for (int rd = 0; custNum[rd]; rd++)
if (!isspace((unsigned char)custNum[rd]))
custNum[wrt++] = custNum[rd];
custNum[wrt] = 0;

std::cout << "Customer No.: " << custNum << '\n';
}
}
两个循环计数器 rd(读取位置)和 wrt(写入位置)仅用于循环原始字符串并删除找到的任何空格,在离开循环时再次nul终止。
示例使用/输出
$ ./bin/readcustnum
Please enter values for the following:
Customer No.: 7877 323 2332
Customer No.: 78773232332
还要看看 Why is “using namespace std;” considered bad practice?C++: “std::endl” vs “\n”。现在养成好习惯比以后改掉坏习惯要容易得多。。。仔细研究一下,让我知道是否有问题。

关于c++ - 空格后的字符未打印出来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63698129/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com