Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Problem_2_Take_in_Data/Take_in_Data/John_Bui_Take_in_Data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void main() {


// User Queries
cout << "How many classes are you in? (answer with number) : ";
cout << "How many classes are you in? (answer with an Int) : ";
cin >> number_of_classes;
cout << "What lunch do you have on A days? ( A, B, C, D) : ";
cin >> lunch_on_Adays;
Expand All @@ -41,6 +41,4 @@ void main() {
cout << "You have " << lunch_on_Adays << " lunch on A days." << endl;
cout << boolalpha << "It is " << pet << " that you have a pet." << endl;
cout << "Your weight is : " << weight << " pounds" << endl;

pause();
}
}