私は、ユーザからの入力行をベクトルで文字列に分割し、一度に1つずつ(8行に1つずつ)印刷するようなものを作成しようとしています。 これまでのところ、これは私が持っているものです。私はそれが一度に8を印刷するには取得にこだわっているベクトルとfor/whileループに関する初心者
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
int main(void)
{
using namespace std;
vector<string> svec1;
string temp;
while(getline(cin, temp)) //stores lines of text in temp
{
if(temp.empty()) //checks if temp is empty, exits loop if so.
break;
stringstream ss(temp);
string word;
while(ss >> word) //takes each word and stores it in a slot on the vector svec1
{
svec1.push_back(word);
}
}
}
、私が試したソリューションは、距離誤差のうちの添字を取得しておきます。このような
、我々はできるように、印刷ソリューションを追加してください添字の誤りを手伝ってください。 – nathan
一度に8枚印刷しますか? – Leon
このショートスニペットはここにインラインで置かれているので、キャスト貼り付け時に問題が有効になるように注意してください(注:既にそれを行いました) –