甲6
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
Reference in New Issue
Block a user