c++
1 2 3 4コード 5#include "pch.h" 6#include <fstream> 7#include <iostream> 8#include <string> 9#include<sstream> 10#include<algorithm> 11 12 13 14 15using namespace std; 16 17 18 19int main(int argc, char*argv[]) 20 21{ 22 if (argc != 2) 23 { 24 cout << "パラメータの数が違います。" << endl; 25 return 1; 26 27 } 28 29 30 ifstream fin(argv[1]); 31 32 if (!fin) 33 { 34 cout << "ファイルをオープンできませんでした" << endl; 35 return 1; 36 } 37 38 39 const int num = 200; 40 string test[num]; 41 int i=0; 42 43 44 45 46 while (!fin.eof()) 47 { 48 49 50 fin >> test[i]; 51 cout << test[i] << endl; 52 i++; 53 54 55 } 56 57 fin.close(); 58 59 60 61 62}
a b
1 2
3 4
5 6
上記のテキストファイルを読み込んでその通りに出力できるようにしたいのですが、
実行すると
a
b
1
2
3
4
5
6
のようになります、どの様に改善すればよいでしょうか?
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/29 05:39
2020/04/29 05:51
2020/04/29 06:06
2020/04/29 06:50