码迷,mamicode.com
首页 > 其他好文 > 详细

一些应该注意的问题

时间:2017-11-20 23:15:27      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:pip   bool   oca   阶乘   turn   sqrt   local   支持   ++   

朴素的素数筛法中

bool chk(int x){
    if(x==1) return 0;
    if(x==2)return 1;//一定要特判2
    if(!(x&1)) return 0;
    int t=sqrt(x);
    for(register int i=3;i<=t;i++){
        if(!(x%i)) return 0;
    }
    return 1;
}

abs 不支持 long long

在二分的时候 中值变量要用mid 防止题目中有m

洛谷 [P1134]阶乘问题

在求最后一位时应考虑前面几位的影响

cd,echo,fi,fc,fg,local,pipe 都是关键字

strlwr() 不是标准库函数 不能用

printf 不要于 abs一起用

一些应该注意的问题

标签:pip   bool   oca   阶乘   turn   sqrt   local   支持   ++   

原文地址:http://www.cnblogs.com/Mr-WolframsMgcBox/p/7868397.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!