#14744:


100318 (曹吉百)

學校 : 臺北市立建國高級中學
編號 : 69094
來源 : [210.71.78.244]
最後登入時間 :
2020-11-04 13:56:05
a224. 明明愛明明 | From: [203.72.178.252] | 發表日期 : 2018-08-02 13:31

#include <iostream>
using namespace std;

int main() {
string input;

while ( cin >> input ) {
int ASCII[256] = {0}, oddCnt = 0;

for ( int i = 0; i < input.length(); ++i )
if ( isalpha ( input[i] ) ) {
input[i] = toupper ( input[i] );
++ASCII[input[i]];
}

for ( int i = 0; i < 256; ++i )
if ( ASCII[i] % 2 )
++oddCnt;

cout << ( oddCnt <= 1 ? "yes !" : "no..." ) << endl;
}

return 0;
}
 
ZeroJudge Forum