会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Jaryoung
博客园
首页
新随笔
联系
订阅
管理
2017年10月28日
欧几里德算法--求最大公约数
摘要: unsigned int Gcd(unsigned int M,unsigned int N) { unsigned int Rem; while(N > 0) { Rem = M % N; M=N; N=Rem; } return M; }
阅读全文
posted @ 2017-10-28 15:17 Jaryoung
阅读(100)
评论(0)
推荐(0)
2017年10月14日
删除字符串中的含义另一字符串的部分
只有注册用户登录后才能阅读该文。
阅读全文
posted @ 2017-10-14 18:32 Jaryoung
阅读(3)
评论(0)
推荐(0)
C语言查找一个字符串中指定字符的个数
摘要: #include <stdio.h> int find_char (char **strings,char value) { int num=0; char *string; while((string= *strings++)!=NULL) { while(*string!='\0') { if(
阅读全文
posted @ 2017-10-14 11:35 Jaryoung
阅读(11578)
评论(0)
推荐(0)
2017年10月10日
linux下OpenSSL的RSA密钥生成
摘要: OpenSSL Version:openssl-1.0.0e.tar.gz 安装: 1、将下载的压缩包放在根目录, 2、在文件夹下解压缩, 命令:tar -xzf openssl-openssl-1.0.0e.tar.gz 得到openssl-openssl-1.0.0e文件夹 3、进入解压的目录:
阅读全文
posted @ 2017-10-10 10:54 Jaryoung
阅读(4641)
评论(0)
推荐(0)
公告