#include<iostream>
#include<iomanip>
#include<ctime>
using std::cout;
using std::cin;
using std::endl;
using std::setw;
int main()
{
char a;
int b,
count=0,
alt=0,
ust=101;
srand(time(0));
cout<<endl<<endl<<endl;
cout<<setw(45)<<"*Created By Okan SARICA*"<<endl<<endl<<endl;
cout<<"\tMerhaba oyuna baslayalim 1 ile 100 arasinda bir sayi tut ve bana "<<endl;
cout<<"soyleme benim tahminimden buyukse b ye, kucukse k ye dogruysa da d harfine bas"<<endl;
b=rand()%100;
cout<<endl<<b;
cout<<" den/dan buyukmu kucukmu "<<endl;
cin>>a;
while(a!='d')
{
if(a=='b'||a=='B')
{
alt=b;
}
else
{
ust=b;
}
if(a=='b'||a=='B')
{
do
{
b=(rand()%(ust-alt)+alt);
}while(b>=ust || b<=alt);
}
else
{
do
{
b=rand()%ust;
}while(b<(alt+1));
}
cout<<b;
cout<<" den/dan buyukmu kucukmu "<<endl;
cin>>a;
count++;
}
cout<<count+1<<" hamlede bildim Hoscakal"<<endl;
system("pause");
return 0;
/*
* Copyright (c) 2003 by Okan SARICA ALL RIGHTS RESERVED.
* Consult your license regarding permissions and restrictions.
*/
}