甲8會噴錯的步驟

This commit is contained in:
2018-03-09 00:17:47 +08:00
parent c5138822d4
commit 582e0cde35

View File

@ -4,7 +4,6 @@
using namespace System; using namespace System;
bool Guess(int number) bool Guess(int number)
{ {
return false;
} }
int main(array<System::String^>^ args) int main(array<System::String^>^ args)
{ {
@ -12,6 +11,7 @@ int main(array<System::String^>^ args)
do do
{ {
std::cout << "Choose a number between 1 - 100 :";
std::cin >> guess; std::cin >> guess;
} }
while (!Guess(guess)); while (!Guess(guess));