I/O 有嵌套 while 麻烦
I/O with nested while trouble
团队!我有一个任务,我必须从一行中从控制台读取一个字符串,从新行中我必须读取一行整数。整数表示字符串的循环旋转级别。 (abcd, 1 -> bcda) 我的问题在阅读时出现在主要方法中。这是:
int main(){
int k;
string s;
while(cin >> m){
while(cin >> k){
string temp = m;
shift(k);
cout << m << endl;
m = temp;
} }
我需要读取多个示例,但此代码只读取一次 m(字符串),而 k(级别)读取无穷大。我怎样才能让它在 k-s 的新行数组上读取 m,然后再读取 m?
这是整个程序:
#include <iostream>
#include <vector>
#include <sstream>
using namespace std;
string m;
void reverse_arr(int a, int b)
{ unsigned i, j, k, c;
char tmp;
for (c=(b-a)/2, k=a, j=b, i=0; i<c; i++, j--, k++)
{ tmp = m[k];
m[k] = m[j];
m[j] = tmp;
}
}
void shift(unsigned k)
{
int N = m.length();
reverse_arr(0, k-1);
reverse_arr(k, N - 1);
reverse_arr(0, N - 1);
}
int main()
{
int k;
string s;
while(getline(cin,m)){
string int_line;
if(getline(cin,int_line)){
istringstream is(int_line);
while(is >> k){
string temp = m;
shift(k);
cout << m << endl;
m = temp;
}
}
}
return 0;
}
P.S。什么是分段错误???这个程序会导致它吗?
要读取行,请使用 getline。但是 getline 只读取一个字符串,所以将你的整数行读入一个字符串,然后使用 istreamstream 从字符串中读取整数。像这样
while (getline(cin, m))
{
string int_line;
if (getline(cin, int_line))
{
istringstream int_input(int_line);
while (int_input >> k)
{
...
}
}
}
这可能不是您真正需要的,我不明白您到底想做什么。但关键是要使用正确的工具来完成工作。你想读取行,所以使用 getline,你想从第二行读取数字,所以在读取行后使用 istringstream 读取数字。
团队!我有一个任务,我必须从一行中从控制台读取一个字符串,从新行中我必须读取一行整数。整数表示字符串的循环旋转级别。 (abcd, 1 -> bcda) 我的问题在阅读时出现在主要方法中。这是:
int main(){
int k;
string s;
while(cin >> m){
while(cin >> k){
string temp = m;
shift(k);
cout << m << endl;
m = temp;
} }
我需要读取多个示例,但此代码只读取一次 m(字符串),而 k(级别)读取无穷大。我怎样才能让它在 k-s 的新行数组上读取 m,然后再读取 m?
这是整个程序:
#include <iostream>
#include <vector>
#include <sstream>
using namespace std;
string m;
void reverse_arr(int a, int b)
{ unsigned i, j, k, c;
char tmp;
for (c=(b-a)/2, k=a, j=b, i=0; i<c; i++, j--, k++)
{ tmp = m[k];
m[k] = m[j];
m[j] = tmp;
}
}
void shift(unsigned k)
{
int N = m.length();
reverse_arr(0, k-1);
reverse_arr(k, N - 1);
reverse_arr(0, N - 1);
}
int main()
{
int k;
string s;
while(getline(cin,m)){
string int_line;
if(getline(cin,int_line)){
istringstream is(int_line);
while(is >> k){
string temp = m;
shift(k);
cout << m << endl;
m = temp;
}
}
}
return 0;
}
P.S。什么是分段错误???这个程序会导致它吗?
要读取行,请使用 getline。但是 getline 只读取一个字符串,所以将你的整数行读入一个字符串,然后使用 istreamstream 从字符串中读取整数。像这样
while (getline(cin, m))
{
string int_line;
if (getline(cin, int_line))
{
istringstream int_input(int_line);
while (int_input >> k)
{
...
}
}
}
这可能不是您真正需要的,我不明白您到底想做什么。但关键是要使用正确的工具来完成工作。你想读取行,所以使用 getline,你想从第二行读取数字,所以在读取行后使用 istringstream 读取数字。