上一页 1 ··· 241 242 243 244 245 246 247 248 249 ··· 367 下一页
摘要: 1、首先确保计算机已经安装IDM。 2、在浏览器(如chrome中)进入设置 点扩展程序: 启动开发者模式: 3、进入IDM的安装目录,找到IDMGCExt.crx 文件。 4、拖动IDMGCExt.crx 文件 到 浏览器的扩展程序页面,选择添加扩展程序 5、测试,出现下载悬浮窗 阅读全文
posted @ 2021-10-06 17:07 小鲨鱼2018 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 从文件编码的方式来看,文件可分为ASCII码(或unicode)文件和二进制码文件两种。 文本文件是基于字符编码的文件。 二进制文件是基于值编码的文件。 二进制编码的字符(ascii或unicode等)表示文件内容, 是文本文件, 其中包含文本字符内容。 二进制值代表机器语言代码或数值数据、图片、音 阅读全文
posted @ 2021-10-04 20:37 小鲨鱼2018 阅读(790) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #include <stdlib.h> #include <time.h> int main(void) { srand((unsigned int) time(0)); int i; for(i = 0; i < 10; i++) { printf("% 阅读全文
posted @ 2021-10-02 20:18 小鲨鱼2018 阅读(919) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> void critic(int * ar1); int main(void) { int num; printf("how many pounds to a firkin of butter? \n"); scanf("%d", &num); while( 阅读全文
posted @ 2021-09-30 22:48 小鲨鱼2018 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 1、问题 [root@PC3 test6]# rar x xiaohou.rar -bash: /usr/local/bin/rar: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory 2、 [root@PC3 te 阅读全文
posted @ 2021-09-28 22:22 小鲨鱼2018 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 以plink软件为例 1、 右击此电脑,选择属性,然后点高级系统设置 2、选高级、然后环境变量 3、 4、 5、复制软件所在的路径 6、点击上移,将添加的环境变量放在顶端(否则有可能不生效) 7、一路点击确定 8、测试 win + r,输入cmd 配置成功。 阅读全文
posted @ 2021-09-27 12:08 小鲨鱼2018 阅读(1473) 评论(0) 推荐(0) 编辑
摘要: 来源: https://www.cnblogs.com/youyoui/p/10680329.html 1、环境变量加载顺序 2、环境变量覆盖 Linux环境变量配置 在自定义安装软件的时候,经常需要配置环境变量,下面列举出各种对环境变量的配置方法。 下面所有例子的环境说明如下: 系统:Ubuntu 阅读全文
posted @ 2021-09-27 11:53 小鲨鱼2018 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #define SIZE 100 void get_n(char * ar, int n); int main(void) { int n; printf("n = "); scanf("%d", &n); while(getchar() != '\n') 阅读全文
posted @ 2021-09-18 10:09 小鲨鱼2018 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 9、 #include <stdio.h> char *s_gets(char *st, int n); int main(void) { char st1[100]; s_gets(st1, 100); puts(st1); return 0; } char *s_gets(char *st, i 阅读全文
posted @ 2021-09-17 21:47 小鲨鱼2018 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #define MONTHS 12 #define YEARS 5 int main(void) { const float rain[YEARS][MONTHS] = { {4.3, 4.3, 4.3, 3.0, 2.0, 1.2, 0.2, 0.2, 阅读全文
posted @ 2021-09-09 18:32 小鲨鱼2018 阅读(59) 评论(0) 推荐(0) 编辑
上一页 1 ··· 241 242 243 244 245 246 247 248 249 ··· 367 下一页