"HSL22R7" 修訂間的差異

出自 青少年追求卓越
前往: 導覽搜尋
行 19: 行 19:
 
** 摩爾門經的故事第05課單字 04-06 第一次練習,複習以前單字。
 
** 摩爾門經的故事第05課單字 04-06 第一次練習,複習以前單字。
 
** 用試算表展示數學和程式設計
 
** 用試算表展示數學和程式設計
 +
<code>
 +
function abi1() { // 2022/8/5
 +
  const ss = SpreadsheetApp.getActiveSpreadsheet(); // ss 代表正在使用中的檔案,包括 13 個工作表
 +
  const sht = ss.getSheetByName('工作表7'); // sht 代表工作表 7
 +
 +
  const red = '紅'; // red 代表 '紅' 這個字
 +
  const green = '綠'; // green 代表 '綠' 這個字
 +
  const blue = '藍'; // blue 代表 '藍' 這個字
 +
 +
  sht.getRange(1,1).setValue(red);
 +
  sht.getRange(1,2).setValue(green);
 +
  sht.getRange(1,3).setValue(blue);
 +
}
 +
</code>
 
* 摩爾門經單字連結
 
* 摩爾門經單字連結
 
** [https://quizlet.com/322110668/flashcards 第01課 ]| [https://quizlet.com/322120821/flashcards 第02課 ]| [https://quizlet.com/322133208/flashcards 第03課 ]| [https://quizlet.com/tw/323067085/flashcards 第04課 ]|[https://quizlet.com/323072538/boms05-flash-cards/ 第05課]
 
** [https://quizlet.com/322110668/flashcards 第01課 ]| [https://quizlet.com/322120821/flashcards 第02課 ]| [https://quizlet.com/322133208/flashcards 第03課 ]| [https://quizlet.com/tw/323067085/flashcards 第04課 ]|[https://quizlet.com/323072538/boms05-flash-cards/ 第05課]

於 2022年8月5日 (五) 09:43 的修訂

暑期阿比班
  • 小一升小二
  • 阿比99乘法表 Quizlet 已完成。
  • 2022/7/22 (五) 開始阿比英文數學程式設計:排列組合機率統計
  • 2022/7/29 (五) 和尤聖恩合班上課
    • 不可重復:四取四排列24種,五取五排列120種 (用試算表展示,程式自動產生資料)
    • 可重複:二取二排列4種,二取三排列8種,二取四排列16種 (用試算表展示,人工填資料)
  • 2022/8/2 (二)
    • 摩爾門經的故事第04課單字 6-10 第一次練習。
    • 用試算表複習推演不可重復:三取三排列、四取四排列、及五取五排列。
  • 2022/8/3 (三)
    • 摩爾門經的故事第05課單字 01-03 第一次練習。
    • 用試算表複習推演不可重復:色碼,紅綠藍。
  • 2022/8/4 (四)
    • 尤老師請假看病
  • 2022/8/5 (五)
    • 摩爾門經的故事第05課單字 04-06 第一次練習,複習以前單字。
    • 用試算表展示數學和程式設計

function abi1() { // 2022/8/5

 const ss = SpreadsheetApp.getActiveSpreadsheet(); // ss 代表正在使用中的檔案,包括 13 個工作表
 const sht = ss.getSheetByName('工作表7'); // sht 代表工作表 7
 const red = '紅'; // red 代表 '紅' 這個字
 const green = '綠'; // green 代表 '綠' 這個字
 const blue = '藍'; // blue 代表 '藍' 這個字
 sht.getRange(1,1).setValue(red);
 sht.getRange(1,2).setValue(green);
 sht.getRange(1,3).setValue(blue);

}