24h購物| | PChome| 登入
2009-04-23 20:07:30| 人氣1,297| 回應0 | 上一篇 | 下一篇

ACM 489 Q489: Hangman Judge

推薦 0 收藏 0 轉貼0 訂閱站台

/*********************/

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
main()
{
 int n,time=0;
 char ans[100],temp[100];
 while(scanf("%d",&n)==1&&n!=-1)
   {
    int die=0,a,b,c,number[27]={0};
    printf("Round %d\n",n);
    time++;
    scanf("%s %s",ans,temp);
    int m=strlen(ans),word=0,yes=0;
    for(a=0;a<m;a++)
     {
      if(number[ans[a]-97]==0)
       {
        number[ans[a]-97]=1;
        word++;
       }
     }
     m=strlen(temp);
    for(a=0;a<m&&die<7;a++)
     {
      if(number[temp[a]-97]==0) {number[temp[a]-97]=-1;die++;}
      if(number[temp[a]-97]==1) {number[temp[a]-97]=-1;yes++;}
     } 
     if(die>=7&&yes!=word) printf("You lose.\n");
     else
      {
       int right=0;
        for(a=0;a<=26;a++)
         if(number[a]==1) {right=1;break;}
        
        if(right==1) printf("You chickened out.\n");
        else printf("You win.\n");
      } 
   }
 return 0;
}

台長: 來源不明
人氣(1,297) | 回應(0)| 推薦 (0)| 收藏 (0)| 轉寄
全站分類: 數位資訊(科技、網路、通訊、家電) | 個人分類: ACM |
此分類下一篇:ACM 11462 11462 - Age Sort
此分類上一篇:ACM 439 Knight Moves

是 (若未登入"個人新聞台帳號"則看不到回覆唷!)
* 請輸入識別碼:
請輸入圖片中算式的結果(可能為0) 
(有*為必填)
TOP
詳全文