#14660: for YP


jaydenchen (後面整排翹課)

學校 : 臺北市私立延平高級中學
編號 : 69085
來源 : [203.72.178.252]
最後登入時間 :
2018-12-19 17:01:05
d187. 11530 - SMS Typing -- UVa11530 | From: [203.72.178.252] | 發表日期 : 2018-07-30 13:05

#include <iostream>
#include <string>
using namespace std;
int num[26]={1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,4,1,2,3,1,2,3,4};
main()
{
int t,i,j;
string s;
cin>>t;
cin.ignore();//在讀取下一行前,忽視enter,才能正常執行
for(i=1; i<=t; i++)
{
getline(cin,s);
int ans=0;
for(j=0; j<s.size(); j++)
if(s[j]==' ') ans++;
else ans+=num[s[j]-'a'];
cout<<"Case #"<<i<<": "<<ans<<endl;

}
}

 
ZeroJudge Forum