我知道已经有几个问题已经回答了这个主题,但没有一个可以帮助我解决我的问题。请记住,我刚开始学习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 写了哈利波特(我认为单词之间的空格是造成问题的原因)。你知道为什么会这样吗?我怎么解决呢?非常感谢你。
答案 0 :(得分:1)
问题是,当在流中遇到空格字符时,operator >>
会停止输入字符串。您应该使用标准函数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 ++,语言)关闭,语句将被编译。
答案 1 :(得分:1)
cin
会将Harry
和Potter
之间的空格视为分隔符,并仅在Harry
中保存text
。
使用cin.getline
,读取整行,直到按下Enter
键。因此,使用cin.getline(text, sizeof(text))
,Harry Potter
将保存在text
。
答案 2 :(得分:0)
您可以使用动态数组字符,以便在运行时将其作为行和列的用户输入进行调整:
#include <iostream>
using namespace std;
int main()
{
int row, col;
cout << "Row: ";
cin >> row;
cout << "Col: ";
cin >> col;
char** cText = new char*[row];
for(int i(0); i < row; i++)
cText[i] = new char[col];
cin.sync(); // clearing the input buffer
cout << "Text: ";
char czTmp[100];
cin.getline(czTmp, row * col); // getting user input text which fits to our 2d array of chars
int k = 0;
for(int i = 0; i < row; i++)
{
for(int j = 0; j < col; j++)
{
cText[i][j] = czTmp[k]; // inputting our array
k++;
}
}
cText[row - 1][col - 1] = '\0'; // adding a null-terminator because it is not added automatically
// printing our array
for(int i = 0; i < row; i++)
{
for(int j(0); j < col; j++)
cout << cText[i][j];
cout << endl;
}
// don't forget to free memory created by new
for(int i(0); i < row; i++)
delete[] cText[i];
delete[] cText;
cout << endl << endl;
return 0;
}