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: 3 additions & 3 deletions yugi_sosa_Displaytextandresponse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void main() {
cout << "What is pi : ";
cin >> piGuess;

cout << "Give me 3 whole numbers : " << "\n";
cout << "Give me 3 whole numbers : " << "\n"; //check to make sure they are integers or just numbers in general???
cout << "Number 1 : ";
cin >> calc_1;
cout << "Number 2 : ";
Expand All @@ -50,7 +50,7 @@ void main() {
cin >> calc_2;

cout << "You've missed, " << axes_missed; << "amount of axes. \n";
cout << boolalpha << "I think that is << answersMatcheds << " is the best character too. " << endl;
cout << boolalpha << "I think that is << answersMatcheds << " is the best character too. " << endl; //i think you messed up your quotation marks
cout << "So you think pie is " << piGuess << '\n';

cout << calc_1 << " + " << calc_2 << " = " << calc_1 + calc_2 << endl;
Expand All @@ -60,4 +60,4 @@ void main() {

// Pause
pause();
}
}