20 lines
273 B
C++
Executable File
20 lines
273 B
C++
Executable File
#include "stdafx.h"
|
|
#include <string>
|
|
#include <iostream>
|
|
using namespace System;
|
|
bool Guess(int number)
|
|
{
|
|
return false;
|
|
}
|
|
int main(array<System::String^>^ args)
|
|
{
|
|
int guess;
|
|
|
|
do
|
|
{
|
|
std::cin >> guess;
|
|
}
|
|
while (!Guess(guess));
|
|
|
|
return 0;
|
|
} |