摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1201 我还以为这是一道脑筋急转弯的题QAQ, AC代码如下: 1 #include <stdio.h> 2 int leapyear(int year) 3 { 4 if(year%4==0 && year%10 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1408 这是一道高精度问题: 在自己错了数十遍之后找到了不少规律: 首先是Output limit exceeded:之前一直不知道是什么意思,现在才知道是输入输出的精度有问题 1 /* */ 2 # includ 阅读全文