#26679: c++ 速解


yangpokemonpin@gmail.com (楊辰彬)

學校 : 不指定學校
編號 : 106248
來源 : [175.183.36.102]
最後登入時間 :
2021-12-01 02:14:50
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [101.136.100.152] | 發表日期 : 2021-08-20 00:27

int test1 = input[i] - 'a';
int test2 = input[i] - 'A';

if (test1 >= 0 && test1 < 26 || test2 >= 0 && test2 < 26)
{
if (POS == false)
{
POS = true; // default is true
count++; // default is 1
}
}
else
{
POS = false;
}
 
ZeroJudge Forum