
c/c++
文章平均质量分 58
drcwr
这个作者很懒,什么都没留下…
展开
-
cdev demo
http://pan.baidu.com/s/1EKkq5原创 2013-12-13 09:34:09 · 415 阅读 · 0 评论 -
追踪CPU跑满
追踪CPU跑满 http://blog.donghao.org/2014/04/24/%E8%BF%BD%E8%B8%AAcpu%E8%B7%91%E6%BB%A1/转载 2014-04-26 05:45:46 · 879 阅读 · 0 评论 -
alias man='man -S 2:3:1' 优先man C函数
alias man='man -S 2:3:1' 优先man C函数转载 2014-05-27 09:24:14 · 586 阅读 · 0 评论 -
数组的完全随机排列
数组的完全随机排列 https://www.h5jun.com/post/array-shuffle.html Array.prototype.sort 方法被许多 JavaScript 程序员误用来随机排列数组。最近做的前端星计划挑战项目中,一道实现 blackjack 游戏的问题,就发现很多同学使用了 Array.prototype.sort 来洗牌。就连最近一期转载 2016-05-20 13:54:05 · 675 阅读 · 0 评论 -
四舍五入
printf sprintf 四舍五入#include<stdio.h>char buf[16]; a=(float)6.66; sprintf(buf,"%.1f",a); printf("%.1f\n",a); printf("%s\n",buf);原创 2016-10-26 08:55:39 · 654 阅读 · 0 评论