摘要: 第一次在这个Blog上发表文章,有点小兴奋,先来到简单点的题吧。其实这就是一道水题,以前做过,感觉不难,但我却WA在了数据范围上,郁闷啊~~不过也学到了不少知识,平衡了~~我的做法: 1 #include<stdio.h> 2 #include<iostream> 3 using namespace std; 4 int main() 5 { 6 __int64 a,b,i,s[102]; 7 while(scanf("%I64d%I64d",&a,&b)!=EOF) 8 { 9 s[1]=a%10;10 for(i=2;i<= 阅读全文
posted @ 2011-11-23 20:09 Misty_1 阅读(163) 评论(0) 推荐(0) 编辑