2015年3月3日

UVa-489 - Hangman Judge

摘要: #include#includeusing namespace std;int main(){ int n; while(cin>>n&&n!=-1) { string a,b; cin>>a>>b; int la=a.size(),lb=... 阅读全文

posted @ 2015-03-03 15:21 windrises 阅读(104) 评论(0) 推荐(0)

UVa-1339 - Ancient Cipher

摘要: #include#include#includeusing namespace std;int main(){ string a,b; while(cin>>a>>b) { int l=a.size(),cnt1[26]={},cnt2[26]={},i; ... 阅读全文

posted @ 2015-03-03 15:20 windrises 阅读(100) 评论(0) 推荐(0)

导航