09 2021 档案
摘要: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(
阅读全文
摘要: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
阅读全文
摘要:以plink软件为例 1、 右击此电脑,选择属性,然后点高级系统设置 2、选高级、然后环境变量 3、 4、 5、复制软件所在的路径 6、点击上移,将添加的环境变量放在顶端(否则有可能不生效) 7、一路点击确定 8、测试 win + r,输入cmd 配置成功。
阅读全文
摘要:来源: https://www.cnblogs.com/youyoui/p/10680329.html 1、环境变量加载顺序 2、环境变量覆盖 Linux环境变量配置 在自定义安装软件的时候,经常需要配置环境变量,下面列举出各种对环境变量的配置方法。 下面所有例子的环境说明如下: 系统:Ubuntu
阅读全文
摘要: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')
阅读全文
摘要: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
阅读全文
摘要: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,
阅读全文
摘要:复习题 9 #include <stdio.h> void show_menu(void); int getchoice(int low, int high); int main(void) { int res; show_menu(); while((res = getchoice(1,4)) !
阅读全文
摘要:x <- c(0.20, 0.65, 1.13, 2.55, 4.00, 5.75, 7.80, 10.20, 12.90, 16.00, 18.40) y <- c(1.8, 3.6, 5.4, 7.2, 9.0, 10.8, 12.6, 14.4, 16.2, 18.0, 19.8) plot(
阅读全文