發表文章

邱香嵐第八周上課

第八周第九周 第八週2020/10/26 國庫券T-Bill,Treasury Bills, 美國財政部Department of the Treasury, 台灣財政部Administry of Finance 國庫券面額$ 91 182 273 364 天期 貼現率 % 價格$ (計算中) 參考李顯儀金融市場page 4-12

金一乙30號邱香嵐第七周2020/10/20

第七周網頁命令與VBA命令比較 網頁指令 輸入資料: 輸入資料:<input id="a" type="text" /> 輸入數字: 輸入數字:<input id="b" type="number" /> <input onclick="alert('你好醜')" type="button" value="按鈕" /> 輸入密碼: 輸入密碼:<input id="c" type="password"/>> 是否吃素: 是否吃素:<input type="checkbox"/> 豬 狗 貓 豬<input type="radio" />狗<input type="radio" />貓<input type="radio" /> 豬 狗 貓 豬<input name="pet" type="radio" />狗<input name="pet" type="radio" />貓<input name="pet" type="radio" /> excel VBA Private Sub CommandButton1_Click() Dim addnew As Range '定義 變數 addnew 是工作表的一個範圍 If Range("A1").CurrentRegion.Rows.Count = 1 Then Set addnew = Sheets("DataTable").Range("A1").Offset(1, 0) Else Set addnew = Sheets(...

第五周

我是超級大美女

金一乙30

圖片
邱香嵐程式設計學習經驗分享 選擇速度: 10 20 40 100 500 選擇顏色: 紅色 劉任昌的教學影片 第一支教學影片 第二支教學影片 趙同學 ]

程式設計學習進度心得

圖片
第一周 下載老師在youtube的影片下方的文字,然後先打開記事本貼上html的文字, 之後建立bolgger網誌新增文章,修改老師事先打好的程式碼,複製045跟046的兩支影片連結,最後加上自己的座號跟姓名。 第二周 先打開自己的blogger然後打開上次編輯的文章,在 <canvas height="310" id="canvas" width="1000"></canvas><br />後面新增 <input type="button" value="不知道打甚麼(隨便打)" onclick="draw()"> <lable>紅色</lable><input type="radio"name="colorl">   <lable>綠色</lable><input type="radio"name="colorl">   <lable>藍色</lable><input type="radio"name="colorl"><br> 第三周 利用表單,傳輸指令到javascript 學習二進位與變數 ctx物件的字形font,後面接屬性properties方法method物件導向設計object-oriented programming design 學習條件式 if(是不是豬頭) {是豬頭,要進行的動作} else {不是豬頭,要進行的動作} 十進位 十進位 二進位 decimal hexadecimal binary 0 0 0 1 1 1 2 2 10 3 3 11 8 8 1000 9 9 1001 10 A 1010 11 B 1011 12 C 1100 13 D 1101 14 E 1110 15 F 1111 16 10 10000 17 11 10001 253 FD 11111101 254 FE 11111110 255 FF 11111111...