參考網址:https://docs.vmware.com/tw/VMware-vSphere/6.5/com. […]
Windows 10 安裝 APP
APP XML C:\Program Files\WindowsApps\ [crayon-69096169c […]
Windows 10 移除預裝APP
使用管理員權限開啟Windows PowerShell [crayon-69096169cf2fa238921 […]
mysql 修復資料表
| 
					 1 2 3 4 5 6  | 
						#使用root帳號登入 mysql -u root -p #選擇資料庫 use db_name; #修復資料表 repair table table_name;  | 
					
資料結構-環形佇列改良
增加一個變數Tag,新增資料時Tag=1,刪除資料時Tag=0,檢查Rear == Font 且Tag=0代表 […]
Linux FSCK 磁碟修復
| 
					 1 2 3 4 5 6 7 8 9 10  | 
						# 掛載全部磁區 mount -a # 列出全部磁區 df -h # 修復全部磁區 fsck -y # 修復特定磁區 fsck -y 磁區(ex: fsck -y /dev/sda1) # 修復完後需要重啟系統 reboot  | 
					
CSS背景圖片置中不重複
| 
					 1 2 3 4 5 6 7 8  | 
						<style>     body {         background-position: center center;         background-size: cover;         background-repeat: no-repeat;         background-attachment: fixed;     } </style>  | 
					
Java – UVA10929
| 
					 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24  | 
						import java.util.Scanner; /**  * UVA10929  */ public class UVA10929 {     public static void main(String[] args) {         Scanner sc = new Scanner(System.in);         while (sc.hasNext()) {             String str = sc.next();             if (str.equals("0"))                 break;             boolean odd = true;             int sum = 0;             for (int i = str.length() - 1; i >= 0; i--) {                 sum += odd ? str.charAt(i) - '0' : -(str.charAt(i) - '0');                 odd = !odd;             }             System.out.printf("%s is%s a multiple of 11.\r\n", str, sum % 11 == 0 ? "" : " not");         }         sc.close();     } }  |