Hello C++ newbie here. I am creating a virtual dyno program. I can't even get multiple pieces of data stored at once. So far when I execute the program, it allows me to input data for the first item, but then skips all the others. How do I get it to pause at each section?
int make;
int model;
int year;
int weight0;
int whp0;
int sixtyft0;
cout << "(The 60ft. is an indicator of traction. For a car with average traction, the 60ft. will be about 1.9 sec. 60ft. Times range from 1.4sec to 2.3sec.)";
cout << endl;
cout << endl;
cout << "Enter estimated 60ft. time: ";
cin >> sixtyft0;
cout << endl;