输入两个非负 10 进制整数 A 和 B (≤),输出 A+B 的 D (1)进制数。 输入格式: 输入在一行中依次给出 3 个整数 A、B 和 D。 输出格式: 输出 A+B 的 D 进制数。 输入样例: 123 456 8 输出样例: 1103code:# #include<iostream>u ...
分类:
其他好文 时间:
2020-05-09 17:11:27
阅读次数:
58
g:\work\node_modules\filemanager-webpack-plugin\lib\index.js:271 if (isGlob) archive.glob(command.source, globOptions);else if (sStats.isFile()) archi ...
分类:
其他好文 时间:
2020-05-09 14:21:02
阅读次数:
205
choice adj./n. 1. N COUNT If there is a choice of things, there are several of them and you can choose the one you want. 2. N COUNT Your choice is som ...
分类:
其他好文 时间:
2020-05-08 13:08:10
阅读次数:
67
1、创建Maven工程,在pom.xml文件上添加<packaging>war</packaging> 并且添加 spring-webmvc 的依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache. ...
分类:
编程语言 时间:
2020-05-08 12:47:54
阅读次数:
59
处理方法: 在 /etc/sysctl.conf文件中加入下面的配置: fs.inotify.max_user_watches=1048576fs.inotify.max_user_instances=1048576 sysctl -p /etc/sysctl.conf 使修改生效。再次执行 tai ...
分类:
其他好文 时间:
2020-05-08 09:48:45
阅读次数:
60
注解和反射 注解 注解: Annotation 的作用 非程序本身,可以对程序做出解释 可以被其他程序读取 Annotation 的格式 "@注释名" (可带参数名) Annotation 使用范围 可附加在 package, class, method, field 等上面,可通过反射机制编程实现 ...
分类:
其他好文 时间:
2020-05-07 15:47:04
阅读次数:
55
1.一维矩阵的动态定义(代码注释) 1.1方法一 package dongtai; import java.util.Scanner; import java.util.ArrayList; public class DongTai { public static void main(String[ ...
分类:
编程语言 时间:
2020-05-06 22:03:13
阅读次数:
75
使用floyd求取传递闭包,每次都进行判断 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N=27; int g[N][N]; bool st[N]; int n,m; int d[N][N] ...
分类:
编程语言 时间:
2020-05-05 10:52:48
阅读次数:
62
1.导入mybatis spring boot starter依赖 2.创建实体类User 3.创建dao层UserMapper 4.创建UserMapper.xml 5.编辑配置文件 6.创建控制器 ...
分类:
编程语言 时间:
2020-05-05 10:42:54
阅读次数:
68
DR模式是通过director将报文源和目标MAC地址修改,发送给RS,RS将响应报文直接发送给client。 部署环境 |LVS服务器(DS)| DIP:172.30.100.111|VIP:172.30.100.1| | | | | |nginx1服务器(RS)|RIP:172.30.100.1 ...
分类:
系统相关 时间:
2020-05-04 15:06:24
阅读次数:
108