This commit is contained in:
2018-03-08 23:56:35 +08:00
parent 83220c46f7
commit c5138822d4

View File

@ -4,7 +4,17 @@
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)
{ {
int guess;
do
{
std::cin >> guess;
}
while (!Guess(guess));
return 0;
} }