SVG 意为可缩放矢量图形(Scalable Vector Graphics)。 SVG 使用 XML 格式定义图像。 svg 的子标签 矩形<rect>、 圆形<circle> 椭圆 <ellipse> 线 <line> 路径 <path> 多边形 <polygon> 折线 <polyline> ...
分类:
其他好文 时间:
2021-02-27 13:04:16
阅读次数:
0
运算符细节 public class Demo1 { public static void main(String[] args) { int a = 10; int b = 20; System.out.println(""+a+b);//输出的是1020 System.out.println(a ...
分类:
编程语言 时间:
2021-02-26 13:17:42
阅读次数:
0
http://www.ruanyifeng.com/blog/2016/07/yaml.html json基本语法:https://baike.baidu.com/item/JSON/2462549?fr=aladdin 一、简介 YAML语言的基本规则如下: 大小写敏感 使用缩进表示层级关系 缩进 ...
分类:
其他好文 时间:
2021-02-26 13:04:21
阅读次数:
0
string中的元素要用''包起来! 一开始把s[i]=='0'写成 s[i]==0然后一直wa//w// 1756 https://leetcode-cn.com/problems/count-number-of-homogenous-substrings/ 没想到这是个找规律QAQ 找完规律就是 ...
分类:
其他好文 时间:
2021-02-25 11:51:46
阅读次数:
0
A - Circle #include<bits/stdc++.h> using namespace std; const int N = 1e6 + 5; typedef long long LL; int r; int main(){ cin >> r; cout << r * r << end ...
分类:
其他好文 时间:
2021-02-24 13:15:50
阅读次数:
0
Oracle OCP 19c 认证1Z0-083考试题库(第2题)-CUUG内部学员版083题库解析 2、Choose three. In which three situations can you use threshold server-generated alerts to help dia ...
分类:
数据库 时间:
2021-02-24 12:52:20
阅读次数:
0
三篇Paper 1.Rolling-Circle RNA Synthesis Circular Oligonucleotides as Efficient Substrate for T7 RNA Polymerase 1995、关键词:Circular Oligonucleotides 摘要: 小 ...
分类:
其他好文 时间:
2021-02-22 12:41:15
阅读次数:
0
--环比去年 and substr(last_sum.dbilldate,1,4) = to_char(add_months(to_date(substr(tmp.dbilldate,1,7),'yyyy-mm'),-12),'yyyy') row_number() over()取最新版本 sele ...
分类:
其他好文 时间:
2021-02-22 12:25:28
阅读次数:
0
JAVA 暴力解法: public final int networkDelayTime(int[][] times, int n, int k) { Map<Integer, List<Integer[]>> map = new HashMap<Integer, List<Integer[]>>( ...
分类:
编程语言 时间:
2021-02-22 12:12:04
阅读次数:
0
统计1-2000000中的素数 php采用的是最版的php7.4 golang采用的是最新版的1.16,开启4个协程 <?php $startTime = time(); $number = 2000000; $primeNumbers = []; for ($i=1;$i<$number;$i++ ...
分类:
Web程序 时间:
2021-02-22 11:53:43
阅读次数:
0