上一页 1 ··· 300 301 302 303 304 305 306 307 308 ··· 367 下一页
摘要: 1、首先查看yum仓库 [root@localhost home]# yum repolist all Loaded plugins: langpacks, product-id, subscription-manager This system is not registered to Red H 阅读全文
posted @ 2021-04-14 13:06 小鲨鱼2018 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 1、查看当前网卡 [root@localhost Desktop]# ifconfig eno16777728: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 ether 00:0c:29:af:60:a0 txqueuelen 1000 ( 阅读全文
posted @ 2021-04-14 12:57 小鲨鱼2018 阅读(636) 评论(0) 推荐(0) 编辑
摘要: 1、找设置 2、点windows安全中心 3、点应用和浏览器控制 4、点击基于声誉的保护设置 5、关闭阻止可能不需要的应用 6、安装完软件重新开启即可。 阅读全文
posted @ 2021-04-12 11:08 小鲨鱼2018 阅读(37051) 评论(0) 推荐(1) 编辑
摘要: 1、找设置 2、点windows安全中心 3、点应用和浏览器控制 4、点击基于声誉的保护设置 5、关闭阻止可能不需要的应用 6、安装完软件重新开启即可。 阅读全文
posted @ 2021-04-12 11:05 小鲨鱼2018 阅读(11343) 评论(0) 推荐(0) 编辑
摘要: 1 编辑vim /etc/ssh/sshd_config文件 把PermitRootLogin Prohibit-password 添加#注释掉 新添加:PermitRootLogin yes 更改PermitEmptyPasswords为 no 2 然后重启ssh服务 service ssh re 阅读全文
posted @ 2021-04-12 10:59 小鲨鱼2018 阅读(386) 评论(0) 推荐(0) 编辑
摘要: c语言中数组,一般数组。 1、什么是数组,数组有什么用? 为了方便处理而把类型相同的变量有序地组织起来的一种形式。 类型相同的元素集中起来,在内存上排成一条直线。 2、数组的声明。 元素类型、变量名和元素个数。 如 int a[4]. 3、数组的访问。 下标运算符; 如 a[4]. 4、数组的遍历。 阅读全文
posted @ 2021-04-08 18:29 小鲨鱼2018 阅读(100) 评论(0) 推荐(0) 编辑
摘要: c语言中程序的循环控制,for语句。 1、输出从任一正整数到0的所有数字。 #include <stdio.h> int main(void) { int i; puts("please input an integer."); printf("i = "); scanf("%d", &i); fo 阅读全文
posted @ 2021-04-07 18:45 小鲨鱼2018 阅读(438) 评论(0) 推荐(0) 编辑
摘要: c语言中程序的循环控制,while语句。 1、输出从任一正整数到0的所有数字 #include <stdio.h> int main(void) { int i; puts("please input an integer."); printf("i = "); scanf("%d", &i); w 阅读全文
posted @ 2021-04-07 18:05 小鲨鱼2018 阅读(537) 评论(0) 推荐(0) 编辑
摘要: c语言中程序的循环控制,do语句。 1、do语句用户输入决定执行判断奇偶数程序的次数 #include <stdio.h> int main(void) { int j; do { int i; puts("please input an integer."); printf("i = "); sc 阅读全文
posted @ 2021-04-07 16:40 小鲨鱼2018 阅读(394) 评论(0) 推荐(0) 编辑
摘要: c语言中的二重循环。 1、输出九九乘法表 #include <stdio.h> int main(void) { int i, j; for (i = 1; i <= 9; i++) { for (j = 1; j <= 9; j++) { printf("%4d", i * j); } putch 阅读全文
posted @ 2021-04-06 22:07 小鲨鱼2018 阅读(1494) 评论(0) 推荐(0) 编辑
上一页 1 ··· 300 301 302 303 304 305 306 307 308 ··· 367 下一页