diff --git a/Git_Practice/Git_Practice.cpp b/Git_Practice/Git_Practice.cpp index 9b850e2..1fdef94 100755 --- a/Git_Practice/Git_Practice.cpp +++ b/Git_Practice/Git_Practice.cpp @@ -4,7 +4,17 @@ using namespace System; bool Guess(int number) { + return false; } int main(array^ args) { + int guess; + + do + { + std::cin >> guess; + } + while (!Guess(guess)); + + return 0; } \ No newline at end of file