From a8d5f13a2fe308827abe9fec2b2c01fd9a316ae5 Mon Sep 17 00:00:00 2001 From: ryan v Date: Thu, 19 Oct 2017 10:10:47 -0500 Subject: [PATCH] formatting --- .../Computer Science Project 2/Source.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Computer Science Project 2/Computer Science Project 2/Source.cpp b/Computer Science Project 2/Computer Science Project 2/Source.cpp index 3dfae1a..0e45505 100644 --- a/Computer Science Project 2/Computer Science Project 2/Source.cpp +++ b/Computer Science Project 2/Computer Science Project 2/Source.cpp @@ -48,13 +48,13 @@ void main() { // Change Values - cout << "2"; + cout << "2" << endl; cin >> calc_1; - cout << "1"; + cout << "1" << endl; cin >> calc_2; - cout << calc_1 << " + " << calc_2 << "=" << calc_1 + calc_2 << end1; + cout << calc_1 << " + " << calc_2 << " = " << calc_1 + calc_2 << end1; calc_3 = calc_1 * calc_2; - cout << calc_1 << "*" << calc_2 << "=" << calc_3 << end1; + cout << calc_1 << " * " << calc_2 << " = " << calc_3 << end1; // Pause pause(); }