これはおそらく非常に簡単な修正ですが、エラーが発生する理由を理解するのに苦労しています.
コード:
#include <iostream>
#include <queue>
#include <vector>
#include <iomanip>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main(int argc, char *argv[]){
srand ( time(NULL) );
double randomNumber = (double)(rand() % 100) / 100;
string numCars;
cout << "\nPlease enter the number of cars going through the intersection:" << endl;
cout << "->";
getline (cin, numCars);
for(double i=0; i<numCars; i++){
cout << randomNumber << endl;
}
}
エラーは次のとおりです。
traffic.cpp:80: error: no match for ‘operator<’ in ‘i < numCars’