摘要: 一、VMware基础操作 1.安装: ①开启硬件虚拟化 BIOS configure 虚拟化选项 ②生成虚拟化硬件环境 ③导入系统镜像:iso文件 ④安装 2.挂起与快照 挂起:保存一次当前虚拟机状态 快照:保存多次对应状态 3.克隆 链接克隆 完整克隆 4.windows快捷键 ctrl + al 阅读全文
posted @ 2021-08-02 17:19 fugin9527 阅读(238) 评论(0) 推荐(0) 编辑
摘要: // 打印空心等腰三角形 // let rowCount = 10; // for(i = 1 ; i <= rowCount ; i++){ // line = ""; // let blankCount = rowCount - i; // for(j = 1 ; j <= blankCoun 阅读全文
posted @ 2021-07-30 19:10 fugin9527 阅读(23) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-07-29 10:44 fugin9527 阅读(79) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-07-29 09:29 fugin9527 阅读(18) 评论(0) 推荐(0) 编辑
摘要: // n位数逆转 function rNumber(n){ let m = 0; for(; n > 0 ;){ m = m * 10 + n % 10 n = parseInt(n / 10) } return m; } console.log(rNumber(45156153135)) ; // 阅读全文
posted @ 2021-07-28 09:37 fugin9527 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 数组下标的意义是偏移量 let arr = [2 , 5 , 9 , 72 , 9 , 1 , 91]; //数组解决星座问题 let sep_list = [20 , 19 , 21 , 20 , 21 , 22 , 23 , 23 , 23 ,& 阅读全文
posted @ 2021-07-27 13:56 fugin9527 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 折半查找:数据必须有序 //数组定义 let arr1 = [1,2,3,4,5]; //用字面量定义数组 let arr2 = new Array(1,2,3,4,5); //用字面量定义数组 let arr3 = new Array(10); //定义有10个元素的数组,初值是 undefine 阅读全文
posted @ 2021-07-26 17:14 fugin9527 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 有语义标签 无语意标签: <div> 纵向排列 <span> 横向排列 HTML:(浏览器渲染后代码和原代码会不同) emmet写法 <!DOCTYPE html> <html lang="en"> <head> <!-- 元信息 --> <meta charset="UTF-8"> <meta h 阅读全文
posted @ 2021-07-20 09:17 fugin9527 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 前端:frontend 后端:backend IDE 集成开发环境: VScode:https://code.visualstudio.com/ 笔记工具 markdown:https://www.typora.io/ 思维导图 Xmind:https://www.xmind.cn/ 阅读全文
posted @ 2021-07-19 15:28 fugin9527 阅读(59) 评论(0) 推荐(0) 编辑