From 7104362f7cd0b09f9a9e45872b66833df2f0e80d Mon Sep 17 00:00:00 2001 From: Steven Romero <31770264+St3ven16@users.noreply.github.com> Date: Fri, 27 Oct 2017 08:41:05 -0500 Subject: [PATCH] Update Source.cpp Steven Romero - 10/27/17 --- .../Three_Digit_Acending_Descending_Selection/Source.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Three_Digit_Acending_Descending_Selection/Three_Digit_Acending_Descending_Selection/Source.cpp b/Three_Digit_Acending_Descending_Selection/Three_Digit_Acending_Descending_Selection/Source.cpp index cc755f1..656d251 100644 --- a/Three_Digit_Acending_Descending_Selection/Three_Digit_Acending_Descending_Selection/Source.cpp +++ b/Three_Digit_Acending_Descending_Selection/Three_Digit_Acending_Descending_Selection/Source.cpp @@ -23,7 +23,7 @@ void pause() { //MAIN void main() { int x; - cout << "Input 3 digit positive integer. . ." << endl; + cout << "Add in any 3 digit positive number. . ." << endl; cin >> x; int a = (x / 100); int b = (x % 100) / 10; @@ -39,4 +39,4 @@ void main() { } pause(); -} \ No newline at end of file +}