這有錯嗎?? ==
我怎麼試都覺得沒問題
最扯的是...
與正確輸出不相符(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.)