
其他
文章平均质量分 79
记录工作学习过程中遇到的各种问题
马斯尔果
这个作者很懒,什么都没留下…
展开
-
FC22录屏工具
Linux FC22 屏幕录制工具在Linux系统中有很多优秀的屏幕的录制工具,比如:1.SimpleScreenRecorderSimpleScreenRecorder是一个应用程序,使您可以记录其他的应用程序和你的屏幕上运行的游戏。这是一个简单但功能强大,功能丰富的屏幕记录软件,包括一个易于使用的界面。安装和使用阅读: http://www.tecmint.com/screencasting-with-simple-screen-recorder-in-linux它的一些显著特点包括:基于Q原创 2020-09-26 13:48:41 · 11658 阅读 · 0 评论 -
C 全面详细的时间格式化
C语言时间格式化输出int main (){ time_t rawtime; struct tm * timeinfo; char buffer [128]; time (&rawtime); printf("%ld\n", rawtime); timeinfo = localtime (&rawtime); strftime (buffer,sizeof(buffer),"Now is %Y/%m/%d %H:%M:%S",timeinfo); printf("%s原创 2020-09-26 14:42:53 · 2060 阅读 · 0 评论 -
数值和千分位的转换
/*功能:将数值格式化成千分位输出输入:number 要转换的数值 splitLen 小数点前分割的长度 pointLen 小数点后保留多少位输出:dstr: 转换后的字符串返回值:void**/void* formatNumber(double number,int splitLen,int pointLen,char *dstr){ char srcbuf[64]=""; char tmpbuf[64]=""; int i = 0; i原创 2020-09-26 15:01:35 · 787 阅读 · 0 评论