Hey, I'm extremely new at C++ and I have a project to do in my math class concerning my career. I would like to open links along with questions that I ask my self in the program.. After it asks what career I want I put in the answer and asks the next question and closes.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include <iostream>
#include <cstdio>
#include <cstdlib>
usingnamespace std;
int main()
{
char Game_Programmer;
char What_education_is_needed;
cout << "What did you choose as your career?" << endl;
cin >> Game_Programmer;
cout << "Are there any questions that you are needing to ask?" << endl;
cin >> What_education_is_needed;
return 0;
}