// Name: Musa Ahmed, Course: CST116, Lab # 0, Learn how to debug and how to use an IDE as well as GitHub #include #include #include #include #include #include using namespace std; using std::cout; using std::cin; using std::endl; using std::string; using std::to_string; int main() { vector n; vector g; vector c; string temp; for (int i = 0; i < 4; i++) { cout << "Enter a name: " << endl; cin >> temp; n.push_back(temp); cout << "Enter a gpa: " << endl; cin >> temp; g.push_back(temp); cout << "Enter an income: " << endl; cin >> temp; c.push_back(temp); } for (int i = 0; i < 4; i ++) { cout << "Profile #" << i << ' ' << "Name: " << n[i] << ' ' << "GPA: " << g[i] << ' ' << "Income: " << c[i] << endl; } return 0; }