from pyecharts import options as opts from pyecharts.charts import Boxplot v1 = [ [850, 740, 900, 1070, 930, 850, 950, 980, 980, 880, 1000, 980], [960
转载
2020-10-07 20:00:00
42阅读
2评论
1.题目描述 找出2-999之内的全部同构数。所谓同构数是这样一个数,它出现在它的平方数的右端,例如5的平方是25,25的右端是5,故5是同构数。(答案:5 6 25 76 376 625) #include<iostream> #include<cstdio> #include<cstdlib> ...
转载
2021-09-24 20:02:00
180阅读
2评论
#pragma once #include<string> using namespace std; class TextCoder { public: TextCoder(string qq); string encoder(); string decoder(); private: string ...
转载
2021-10-27 23:59:00
6290阅读
2评论
task 5 Info.hpp #include <iostream> #include <vector> #include<iomanip> #include<string> using namespace std; class Info { private: string nickname; s ...
转载
2021-10-31 18:53:00
542阅读
2评论
如何设置Ubuntu的远程连接root 1.切换成root sudo -i 1.5 设置个root密码 passwd 2.进入nano /etc/ssh/sshd_config nano /etc/ssh/sshd_config 3.修改这个位置 PermitRootlogin yes 4.保存 c
原创
2024-03-19 21:24:43
12阅读
#include <stdio.h> int main() { int x, y; int r1, r2, r3, r4; x = 1; y = 2; r1 = x + y; r2 = x - y; r3 = x * y; r4 = x / y; printf("r1 = %d\n", r1); p ...
转载
2021-11-02 20:07:00
213阅读
2评论
#ifndef INFO_HPP #define INFO_HPP #include<iostream> #include<string> #include<vector> using namespace std; class info{ public: info(string a,string b ...
转载
2021-10-26 18:15:00
91阅读
2评论
Info.hpp文件源码 #ifndef INFO_HPP #define INFO_HPP #include<iostream> #include<iomanip> #include<string> using namespace std; class Info { public: Info(st ...
转载
2021-10-27 19:50:00
78阅读
2评论
task5 hpp: #ifndef INFO_HPP #define INFO_HPP #include<bits/stdc++.h> #include<vector> using namespace std; class Info { public: Info()=default; Info(s ...
转载
2021-11-03 15:04:00
504阅读
2评论
#实验任务1 ##代码 ```c++ 1 #pragma once 2 #include <string> 3 4 class T { 5 public: 6 T(int x = 0, int y = 0); 7 T(const T &t); 8 T(T &&t); 9 ~T(); 10 void ...
试设计一个具有5*5神经元平面阵的SOM网,建议学习率(t)在前1000步训练中从0.5线性下降至0.0
原创
2022-10-19 16:18:19
132阅读
文章目录1.仿写cp命令的部分功能(编写mycp程序)2.命令行参数3.打开文件(POSIX API)3.读取文件(POSIX API)4.写文件(POSIX API)5.关闭文件(POSIX API)6.文件定位(POSI
原创
2023-03-08 19:29:51
239阅读
实验二 循环结构程序设计实验要求:为达到理想的实验效果,同学们务必做到
原创
2022-08-19 02:06:35
1457阅读
IP 端口号及IP
R1
S1/0 :172.16.61.1
S2/0 :172.16.41.1
F0/0 :172.16.12.1
R2
F0/0 :172.16.12.2
S1/0 :172.16.23.2
Loopback:
原创
2009-09-10 11:18:33
496阅读
和secondary VLAN
和子vlan之间是不能访问的。就比如说 而部门之间却不能互相访问。
SW1——————————设vlan3:
<Quidway>sys
Enter system view, return to user view with Ctrl+Z.
[Quidway]vlan 2
[Quidway-vlan2]port e0/3
[Q
原创
2009-11-29 10:53:02
515阅读
实验课题(2019.4.10)实验需求:1、pc1属于vlan10pc2/pc4属于vlan202、Vlan10流量默认从SW-3L走,vlan20流量从R3走(互为热备)3、二层交换机与三层交换机有链路捆绑4、Pc1/2/4机器自动获取ip地址5、全网互通pc3服务器,pc4受到acl控制,无法访问解题:一、划分网段PC1属于vlan10、PC2\PC4属于vlan20Sw-3L上的vlan10
原创
2019-04-10 13:54:50
439阅读
...
转载
2021-09-22 21:21:00
50阅读
2评论
...
转载
2021-10-07 21:40:00
41阅读
2评论
实验1 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 #define N1 80 6 #define N2 35 7 int main() { 8 int cnt; 9 int rando ...
求一个一维数组的最大值。 代码: <?php $arr=[1,6,90,6,4,-5,3]; $max=-999999; for($i=0;$i<count($arr);$i++){ if($max<$arr[$i]){ $max=$arr[$i]; } } echo "数组元素为"; foreac
原创
2021-07-29 09:32:39
81阅读