gpt4 book ai didi

C++ 将字符串(带空格)显示为二维数组?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:54:35 25 4
gpt4 key购买 nike

我知道已经有几个关于这个主题的问题得到了解答,但没有一个能帮助我解决我的问题。请记住,我刚刚开始学习 C++ 编程。

我正在创建一个程序来读取文本,然后以 N 行 x M 列(由用户输入)的形式显示它。因此,如果用户编写 HarryPotter 并希望它显示在 3 x 4 数组中,它应该看起来像这样:

H a r r
y P o t
t e r

我已经设法用这段代码做到了:

cout << "Number of rows: ";
cin >> nr;
cout << "Number of columns: ";
cin >> nc;
cout << "Type in text: ";
cin >> text;

char letters[100][100];

for (int row = 0; row < nr; row++)
{
for (int col = 0; col < nc; col++)
{
letters[row][col]= text [i];
i++;
}
}

cout << "Print array: " << endl;
for (int row = 0; row < nr; row++)
{
for (int col = 0; col < nc; col++)
{
cout << letters[row][col];
}

cout << "\n";
}

在用户输入多个单词之前,它工作正常。例如,他写的不是 HarryPotter Harry Potter(我认为单词之间的空格是造成问题的原因)。你知道为什么会这样吗?我该如何解决?非常感谢。

最佳答案

问题在于,当在流中遇到空白字符时,运算符>> 会停止输入字符串。您应该改用标准函数 std::getline

考虑到显示字符串不需要定义数组。无需使用数组即可完成该任务。

这是一个演示程序。

#include <iostream>
#include <string>
#include <limits>
#include <algorithm>

int main()
{
while ( true )
{
std::cout << "Number of rows (0 - exit): ";

unsigned int rows;
if ( not ( std::cin >> rows ) or ( rows == 0 ) ) break;

std::cout << "Number of columns (0 - exit): ";

unsigned int cols;
if ( not ( std::cin >> cols ) or ( cols == 0 ) ) break;

std::cin.ignore( std::numeric_limits<std::streamsize>::max(), '\n' );

std::cout << "Type in text: (Enter - exit): ";

std::string text;
std::getline( std::cin, text );
if ( text.empty() ) break;

std::cout << std::endl;

std::string::size_type n = text.size();

n = std::min<std::string::size_type>( n, cols * rows );

for ( std::string:: size_type i = 0; i < n; i++ )
{
std::cout << text[i];

std::cout << ( ( i + 1 ) % cols == 0 ? '\n' : ' ' );
}

std::cout << std::endl;
}

return 0;
}

它的输出可能看起来像

Number of rows (0 - exit): 3
Number of columns (0 - exit): 4
Type in text: (Enter - exit): HarryPotter

H a r r
y P o t
t e r

Number of rows (0 - exit): 2
Number of columns (0 - exit): 6
Type in text: (Enter - exit): HarryPotter

H a r r y P
o t t e r

Number of rows (0 - exit): 6
Number of columns (0 - exit): 2
Type in text: (Enter - exit): HarryPotter

H a
r r
y P
o t
t e
r

Number of rows (0 - exit): 4
Number of columns (0 - exit): 4
Type in text: (Enter - exit): Antonella Masini

A n t o
n e l l
a M a
s i n i

Number of rows (0 - exit): 0

你可以替换这个语句

if ( not ( std::cin >> rows ) or ( rows == 0 ) ) break;

对于这个语句

if ( !( std::cin >> rows ) || ( rows == 0 ) ) break;

如果编译器没有编译第一条语句。如果您使用 MS VC++,那么您应该在项目的属性中关闭使用语言扩展(C++,语言),并且语句将被编译。

关于C++ 将字符串(带空格)显示为二维数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40579066/

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