摘要: 1.运行如下的代码:#include #include int main(){ int a; a=1; int s[4]; memset(s, 0, sizeof(s)); s[a++]=a++; printf("s[0]=%d\n", s[0]); printf... 阅读全文
posted @ 2015-08-27 20:38 我喜欢旅行 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://poj.org/problem?id=1961Sample Input3aaa12aabaabaabaab0Sample OutputTest case #12 23 3Test case #22 26 29 312 4题目分析:给你一个字符串,最大长度1百万。输出是:以第1... 阅读全文
posted @ 2015-08-27 18:44 我喜欢旅行 阅读(199) 评论(0) 推荐(0) 编辑