上一页 1 ··· 333 334 335 336 337 338 339 340 341 ··· 367 下一页
摘要: 问题: centos7 虚拟机,网络模式为桥接,ip:192.168.3.25 物理机,win 10 , ip: 192.168.3.4 1、物理机ping 虚拟机,可以ping通 C:\Users\75377>ping 192.168.3.25 正在 Ping 192.168.3.25 具有 32 阅读全文
posted @ 2020-12-29 01:20 小鲨鱼2018 阅读(1700) 评论(0) 推荐(2) 编辑
摘要: 软件准备: 虚拟机软件: VMware Workstation(直接下载安装即可) centos镜像:https://www.centos.org/(下载镜像) 提前建立一个安装目录(比如/D/linux/centos) 1、打开vmware workstation软件,出现如下页面 2、点击创建新 阅读全文
posted @ 2020-12-28 23:12 小鲨鱼2018 阅读(965) 评论(0) 推荐(0) 编辑
摘要: 镜像: linux centos7.9 软件:vmware 安装过程:基本一路默认 问题:安装成功后,只有命令行,没有图形界面 解决办法如下: 1、安装参数 2、出现问题界面,安装之后,没有图形界面,只能输入命令行 3、解决办法 检测yum是否可以使用,执行 yum list | tail, 如下图 阅读全文
posted @ 2020-12-28 19:46 小鲨鱼2018 阅读(12740) 评论(6) 推荐(3) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int i; puts("please input a month."); printf("month i: "); scanf("%d",&i); if (i >= 3 && i <= 5) { printf("%d i 阅读全文
posted @ 2020-12-27 23:49 小鲨鱼2018 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1、最大值 #include <stdio.h> int main(void) { int a,b,c,d,m; puts("please input four integers."); printf("a = "); scanf("%d", &a); printf("b = "); scanf(" 阅读全文
posted @ 2020-12-27 20:07 小鲨鱼2018 阅读(2217) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int i,j; puts("please input two integers."); printf("i: "); scanf("%d",&i); printf("j: "); scanf("%d",&j); prin 阅读全文
posted @ 2020-12-27 19:12 小鲨鱼2018 阅读(7713) 评论(0) 推荐(0) 编辑
摘要: 1、最大值 #include <stdio.h> int main(void) { int a,b,c,d,m; puts("please input four integers."); printf("a = "); scanf("%d", &a); printf("b = "); scanf(" 阅读全文
posted @ 2020-12-27 18:06 小鲨鱼2018 阅读(4960) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int i,j; puts("please input two integers: "); printf("i: "); scanf("%d",&i); printf("j: "); scanf("%d",&j); if 阅读全文
posted @ 2020-12-27 17:29 小鲨鱼2018 阅读(1872) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int i; puts("please input a integer: "); printf("i: ");scanf("%d",&i); if (i > 0) if(i % 2 == 0) printf("even: 阅读全文
posted @ 2020-12-27 16:43 小鲨鱼2018 阅读(1397) 评论(0) 推荐(0) 编辑
摘要: 1、else悬挂 #include <stdio.h> int main(void) { int i; puts("please input a integer."); printf("i: ");scanf("%d",&i); if (i > 0) puts("++++"); if (i == 0 阅读全文
posted @ 2020-12-27 15:39 小鲨鱼2018 阅读(194) 评论(0) 推荐(0) 编辑
上一页 1 ··· 333 334 335 336 337 338 339 340 341 ··· 367 下一页