#2257: 怎麼會這樣??


nim2456 (冷月無華)

學校 : 國立臺東大學
編號 : 7144
來源 : [124.199.101.163]
最後登入時間 :
2015-09-08 11:09:14
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [125.226.135.3] | 發表日期 : 2009-08-13 17:43

這有錯嗎?? ==

 我怎麼試都覺得沒問題

 最扯的是...

與正確輸出不相符(line:1)
您的答案為: 95
正確答案為: 11

心中只有一個字"鳥"  = . =

 太耶安捏....

附上程式...這是用VISUAL C++

#include "stdafx.h"
#include <iostream>  
#include <string>  
using namespace std;  
void main()  
{  
 char a[999];     
 do
 {
   if(cin.get(a,999)!='\0')  
   {      
     int b=0;    
     for (int i=0;i<999;i++)  
     {  
         if ((a[i]<=122 && a[i]>=97) || (a[i]>=65 && a[i]<=90))
             if ((a[i+1]>90 && a[i+1]<97) || (a[i+1]<65 ) || (a[i+1]>122))   
                 b=b+1;              
      }
   cout << b <<endl;
    }  
 }     
 while(cin.get() != EOF);
}

 如果真的有錯...是否給我個WA的輸入範例讓我試試看...因為我真的試很久了= =

還是說裡面藏縮寫?(EX:I'm a pig.)

 
ZeroJudge Forum