何昱陵程式設計學習與進度
第一週九月七日 老師給 範本 學生改,如此學習 第二週九月十四日 學習 <input type="button" value="2020年每天的貨幣數量" onclick="draw()"> button 鈕扣,按鈕 type 可以改成 radio、checkbox........ 第三週九月二十一日 學習input還有 表單form 在HTML處增加 <form> <b>選擇顏色: <input id="linecolor" type="checkbox">紅色 <!--核取方塊 linecolor --> <input onclick="draw()" type="button" value="2020年每天通貨走勢" /> </form> 在JavaScript處作如下更改 ctx.fillStyle="black"; if ( document.getElementById('linecolor').checked ) ctx.fillStyle="red"; 位元組與變數 數位世界,數位digital 0-1的世界,bit={0,1}每八個bit byte(位元組) 整數=2 byte 長整數=4 byte 字元= 2byte 10 進位 16 進位 位元組 Byte 數的 2 進位表示 2 進位對應的 10 進位 7 6 5 4 3 2 1 0 128 64 32 16 8 4 2 1 0 0 0 0...