Not sure whats going on, this program lets me consistantly put input in witout outputting anything.
#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
cout << "How many cars have been rented?";
cin >> numCars;
cout << "Now please input the type of car that was rented\n (using only the beginning letter of the \n";
cout << "type of car, the number of days they had the car,\n and how many miles they put on the car.\n";
cout << setw(8) << "Car Type" << setw(17) << "Number of days" << setw(18) << "Number of Miles" << setw(8) << "Charge\n";
user = 0;
while (user < numCars)
cin >> carType >> numDays >> numMiles;
if (carType == 's' || carType == 'S')
{