1 abstract class Shape { 2 public abstract float area(); 3 public abstract void printArea(); 4 } 5 class Rectangle extends Shape { 6 int width; 7 int ...
分类:
其他好文 时间:
2020-12-17 12:36:17
阅读次数:
3
Control.BackColor=System.Drawing.Color.FromArgb(10,Color.LightGray); Control.BackColor = System.Drawing.Color.FromArgb(100, Color.LightGray); 这两种设置控件的 ...
from docx.shared import Pt,RGBColor from docx.oxml.ns import qn #word中字体的颜色、大小、字体def style(tt,tsize,color,rfont): for ii in tt: for run1 in ii.runs: f ...
分类:
其他好文 时间:
2020-12-16 12:37:51
阅读次数:
2
int cmp(const void*a, const void*b){ return (*(int**)a)[0] > (*(int**)b)[0]; } int** merge(int** intervals, int intervalsSize, int* intervalsColSize, ...
分类:
其他好文 时间:
2020-12-16 12:28:04
阅读次数:
3
= 3600000 毫秒 1 天=86400000 毫秒 System.Timers.Timer myTimer = new System.Timers.Timer(60000); myTimer.Elapsed += new ...
AGENT_DIR="${ROOTFS_DIR}/usr/bin" AGENT_DEST="${AGENT_DIR}/${AGENT_BIN}" ...
分类:
Web程序 时间:
2020-12-15 11:44:32
阅读次数:
4
1 class Solution { 2 public String longestPalindrome(String s) { 3 if(s.equals("")) return ""; 4 String origin = s; 5 String reverse = new StringBuffe ...
分类:
其他好文 时间:
2020-12-14 13:43:53
阅读次数:
4