csvファイルを読み込んで、出力し、この画像2列めが80から90の間において、3列目の値の正の数と負の数を出力するプログラムを作りたいです。(1行目は無視したいです。)このcsvファイル画像では一部ですが、実際は3×3000あります。
#include <fstream> #include <string> #include <sstream> #include <vector> #include<iostream> using namespace std; vector<string> split(string& input, char delimiter) { istringstream stream(input); string field; vector<string> result; while (getline(stream, field, delimiter)) { result.push_back(field); } return result; } int main() { int puls =0; int minus=0; ifstream ifs("1-8.csv"); string line; while (getline(ifs, line)) { vector<string> strvec = split(line, ','); for (int i=0; i<strvec.size();i++){ cout << strvec.at(i); } cout << endl; for (int j=0; j<strvec.size();j++){ if(j/3==2){ if(80<strvec.at(j)<90){ if(j/3==0){ if(strvec.at(j)>0){ puls += 1; }else{ minus += 1; } } } } } } cout<<puls<<endl; cout<<minus<<endl; }
エラーメッセージ
csv2.cpp:38:12: error: no match for 'operator<' (operand types are 'int' and '__gnu_cxx::__alloc_traits<std::allocator<std::__cxx11::basic_string<char> >, std::__cxx11::basic_string<char> >::value_type' {aka 'std::__cxx11::basic_string<char>'})
38 | if(80<strvec.at(j)<90){
| ~~^~~~~~~~~~~~~
| | |
| int __gnu_cxx::__alloc_traits<std::allocator<std::__cxx11::basic_string<char> >, std::__cxx11::basic_string<char> >::value_type {aka std::__cxx11::basic_string<char>}
このようにstrvec.at(j)に大小の条件をつけているところで全てエラーが出てしまいます。どのようにすれば良いのでしょうか
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/06 07:11
2021/01/06 07:15
2021/01/06 07:38