2015年2月14日

UVa-401 Palindromes

摘要: #include#include#includeusing namespace std;int main(){ string a; while(cin>>a) { int k=a.size(); bool f1=1,f2=1; for(in... 阅读全文

posted @ 2015-02-14 03:12 windrises 阅读(124) 评论(0) 推荐(0) 编辑

UVa-10082 WERTYU

摘要: #include#include#includeusing namespace std;int main(){ char a[100]={"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"}; char b; while(scanf... 阅读全文

posted @ 2015-02-14 03:09 windrises 阅读(104) 评论(0) 推荐(0) 编辑

Uva-272 TEX Quotes

摘要: 容易题,考察字符串。#include#includeusing namespace std;int main(){ char a; int cnt=0; while(scanf("%c",&a)==1) { if(a=='"') { ... 阅读全文

posted @ 2015-02-14 03:06 windrises 阅读(92) 评论(0) 推荐(0) 编辑

开始我的博客之旅

摘要: 以前也写过博客,可是都没有坚持下去。 今天想尝试开始写写编程方面的博客, 一方面督促自己,一方面也能和大家交流学习。 编程小白,现在读大一,接触编程有半年了。 想在这个寒假自学一点算法,刷刷题,为步入ACM之路打基础。 就这样了,加油! 阅读全文

posted @ 2015-02-14 02:53 windrises 阅读(88) 评论(0) 推荐(0) 编辑

导航