0

これが「TextFile.txt」という名前のテキストファイルです

Stat    Rain
1       16
2       34
3       24
4       23
5       21
6       19
7       17
8       35
9       27

そして、ここに私のC++コードがあります:

#include<iostream>
#include<fstream>
using namespace std;
char Station[9];
char Rainfall[9];
int i;
int j;
int s[23];
double r[23];
main()
{
    ifstream Read;
    Read.open("TextFile.txt");
    Read>>Station;//I don't want this
    Read>>Rainfall;//I have no choice then I just assign these two variables
    i=0;
    while(!Read.eof())//This is the only I want
    {
        i++;
        Read>>s[i]>>r[i];
    }
    Read.close();
    for(j=1;j<i;j++)
    {
        cout<<s[j]<<"\t"<<r[j]<<endl;
    }
    return 0;
}

データだけ欲しい。では、最初の行をスキップして 2 行目をすぐに読むにはどうすればよいでしょうか。可能であれば、最初の列を読む時間を無駄にすることなく、2 列目だけを読むにはどうすればよいですか?

4

1 に答える 1