//目录

模拟猜数(POJ2328)

题目链接:http://poj.org/problem?id=2328

解题报告:

缩短区间,soeasy,

#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <string.h>
#include <limits.h>

using namespace std;

int main()
{
    int n,begin = 0,end = INT_MAX;
    char str[10];
    while( cin >> n && n )
    {
        getchar();
        begin = 0,end = INT_MAX;
         while ( gets(str) && strcmp(str,"right on") )
         {
            if( strcmp(str,"too high") == 0 && n < end )
                end = n;
            else
                if( strcmp(str,"too low") == 0 && n > begin )
                    begin = n;
            cin >> n;
            getchar();
        }
        if( n > begin && n < end )
            printf("Stan may be honest\n");
        else
            printf("Stan is dishonest\n");
    }
    return 0;
}

 

posted @ 2016-05-12 20:54  小草的大树梦  阅读(175)  评论(0编辑  收藏  举报