上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 56 下一页
摘要: 众所周知,国产输入法,都会监控记录用户的敏感词条,并上传到服务器,严重侵犯了用户的隐私。 国产输入法的替换,那就非小狼毫莫属了。 先去官网下载并安装最新版的小狼毫输入法,https://rime.im/download/ 下载exe文件后,点击安装。 接下来下载词库,两种方式,一种是在线安装,一种是 阅读全文
posted @ 2020-10-22 23:32 profesor 阅读(1325) 评论(0) 推荐(0) 编辑
摘要: 1. $ sudo dnf install \ https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm 2. Install VLC $ sudo dnf inst 阅读全文
posted @ 2020-10-22 16:06 profesor 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 中科大源: https://mirrors.ustc.edu.cn/centos/8.2.2004/isos/x86_64/ 注:如何更改为科大源: https://mirrors.ustc.edu.cn/help/centos.html 阿里云: http://mirrors.aliyun.com 阅读全文
posted @ 2020-10-20 18:01 profesor 阅读(1219) 评论(0) 推荐(0) 编辑
摘要: 官方下载页面: https://getfedora.org/en/workstation/download/ 中科大下载页面: https://mirrors.ustc.edu.cn/fedora/releases/33/Workstation/x86_64/iso/ 32版: https://mi 阅读全文
posted @ 2020-10-19 19:15 profesor 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 適合做「每天十分鐘回音練習」的建議電視影集:Gilmore Girls, Seinfeld, The Good Wife, Grey's Anatomy, ER, Mad Men, Six Feet Under, Modern Family, West Wing, The Office, Ugly 阅读全文
posted @ 2020-10-18 17:10 profesor 阅读(130) 评论(0) 推荐(0) 编辑
摘要: man environ extern char **environ; 阅读全文
posted @ 2020-07-18 22:24 profesor 阅读(218) 评论(0) 推荐(0) 编辑
摘要: // 1234 = 1^4 + 2^4 + 3^4 + 4^4; // 341 = 3^3 + 4^3 + 1^3 // 类似于水仙花数 #include <stdio.h> #include <math.h> int digitCount(int n) { //此函数用于获取整数的位数 int i 阅读全文
posted @ 2020-07-10 10:54 profesor 阅读(123) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> typedef union { double math; double phys; double chem; } Score; typedef struct student { char name[10]; int age; Score grade; char 阅读全文
posted @ 2020-07-09 22:46 profesor 阅读(524) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> typedef enum {FALSE, TRUE} Boolean; Boolean isEven(int i) { if ( i % 2 == 0 ) return TRUE; else return FALSE; } int main() { int i 阅读全文
posted @ 2020-07-09 20:46 profesor 阅读(114) 评论(0) 推荐(0) 编辑
摘要: //使用recursion来计算生成fibonacci series前49个数,并计算程序运行时间 #include <stdio.h> #include <time.h> double fibon(int n) { if (n == 1 || n == 2) return 1; else if ( 阅读全文
posted @ 2020-07-02 23:05 profesor 阅读(124) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 56 下一页