上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 54 下一页
摘要: 问题:公司有一个c类网址102.16.202.133,子网掩码为255.255.255.0。公司有4个部门:财务部、研发部、销售部和人力资源部。 要求划分4个子网。 255.255.255.0 二进制为: 11111111 11111111 11111111 00000000 若划分4个子网,需从主 阅读全文
posted @ 2021-11-05 13:30 bobo哥 阅读(1875) 评论(0) 推荐(0)
摘要: 源程序: #include <iostream>#include <string>using namespace std; class myDate{private: int year,month,day;public: myDate() { year=1970; month=1; day=1; } 阅读全文
posted @ 2021-11-02 08:44 bobo哥 阅读(92) 评论(0) 推荐(0)
摘要: 源程序: //循环队列 #include <stdio.h> #include <stdlib.h> #define MAXSIZE 100 typedef struct cycqueue { int data[MAXSIZE]; int front,rear; //声明队列的头指针和尾指针 }Cy 阅读全文
posted @ 2021-04-29 09:55 bobo哥 阅读(125) 评论(0) 推荐(0)
摘要: 源程序: num = int(input("input the number of end:"))sum1 = 0i = 1while i <= num: sum1 = sum1 + i i = i + 1print(sum)运行结果: 阅读全文
posted @ 2021-04-11 12:19 bobo哥 阅读(2105) 评论(0) 推荐(1)
摘要: 原玛: username=input("nput username:")password=input("input password:")print(username)print(password)num=0flag=0while True: usr=input("input username:") 阅读全文
posted @ 2021-04-10 23:43 bobo哥 阅读(816) 评论(0) 推荐(0)
摘要: source program: list=[]while True: print("how many number input:") try: num=int(input()) for i in range(num): a=int(input("input"+str((i+1))+"integer: 阅读全文
posted @ 2021-04-10 12:13 bobo哥 阅读(57) 评论(0) 推荐(1)
摘要: 原图: OSPF网络中,路由器在发送任何链路状态信息之前,必须先建立起正确的OSPF邻居、邻接关系。 OSPF路由器是使用Hello报文来建立邻居关系的。OSPF路由器会检查所收到的Hello报文中的各种参数,如Router-ID、Area-ID、认证信息、网络掩码、Hello时间间隔等。如果这些参 阅读全文
posted @ 2021-04-06 22:54 bobo哥 阅读(471) 评论(0) 推荐(0)
摘要: 1、原图: 2、R1的配置情况 说明:network 10.0.12.1 0.0.0.0 网络掩码全0表示只宣告一台主机,是精确宣告。 3、R1的邻居: R1的邻居信息 4、R1的路由表: 5、查看R1的DR/BDR选举情况 6、修改R1的 g0/0/1 端口的优先级,将优先级修改为2 : inte 阅读全文
posted @ 2021-04-02 17:25 bobo哥 阅读(533) 评论(0) 推荐(0)
摘要: 原图: R11的配置过程: R12的配置过程: R01的配置过程: R02的配置过程: R03的配置过程: R21的配置过程: R22的配置过程: 测试: 查看R01邻居状态: 查看R03上的接口状态: 阅读全文
posted @ 2021-03-30 22:00 bobo哥 阅读(151) 评论(0) 推荐(0)
摘要: 原图: R1的配置过程: R2的配置过程: R3的配置过程: R4的配置过程: 阅读全文
posted @ 2021-03-30 21:37 bobo哥 阅读(93) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 54 下一页