From 5e21780a7d4cd337f8895d117d355902e491ef5f Mon Sep 17 00:00:00 2001 From: DenialHandrails <31861696+DenialHandrails@users.noreply.github.com> Date: Tue, 1 Oct 2019 14:15:43 -0500 Subject: [PATCH] Updates Clarified meaning and syntax according to new knowledge --- .../Take_in_Data/John_Bui_Take_in_Data.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Problem_2_Take_in_Data/Take_in_Data/John_Bui_Take_in_Data.cpp b/Problem_2_Take_in_Data/Take_in_Data/John_Bui_Take_in_Data.cpp index 45fb6e9..6b10853 100644 --- a/Problem_2_Take_in_Data/Take_in_Data/John_Bui_Take_in_Data.cpp +++ b/Problem_2_Take_in_Data/Take_in_Data/John_Bui_Take_in_Data.cpp @@ -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; @@ -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(); -} \ No newline at end of file +}