Skip to content

Commit 7505200

Browse files
authored
課題を演習に変更 (第3回授業分) #716
1 parent 7334d66 commit 7505200

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/1-trial-session/08-functions/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function tryToDrive() {
9090

9191
:::
9292

93-
### 確認課題
93+
### 確認問題
9494

9595
引数を 2 つとり、その積を<Term>戻り値</Term>として<Term>返す</Term><Term>関数</Term> `multiply` を定義してください。
9696

@@ -247,7 +247,7 @@ function showProbabilityAsGraph(probability) {
247247

248248
---
249249

250-
## 基礎課題
250+
## 基礎演習
251251

252252
### 最大値
253253

@@ -294,7 +294,7 @@ function max(a, b) {
294294

295295
</Answer>
296296

297-
## 中級課題
297+
## 中級演習
298298

299299
### 携帯電話料金
300300

docs/1-trial-session/09-loop/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ while (条件式) {
3535

3636
![while 文の構造](./while-statement.drawio.svg)
3737

38-
### 課題
38+
### 確認問題
3939

4040
1 から 10 までの整数の合計を計算するプログラムを作ってみましょう。
4141

@@ -137,7 +137,7 @@ const string2 = `10から2を引くと${10 - 2}です。`;
137137

138138
---
139139

140-
## 基礎課題
140+
## 基礎演習
141141

142142
### 1 ~ 10 の積
143143

@@ -171,9 +171,9 @@ document.write(product);
171171

172172
</Answer>
173173

174-
## 中級課題
174+
## 中級演習
175175

176-
### 素数判定問題
176+
### 素数判定
177177

178178
ある整数の変数 `n` が与えられたとき、その値が素数であるかどうか判定するプログラムを作成してください。
179179

docs/1-trial-session/10-array/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const six = 6;
3535
document.write(studentNames[six / 2 - 1]); // 鈴木
3636
```
3737

38-
### 課題
38+
### 問題
3939

4040
次のプログラムを実行すると何と表示されるでしょうか。
4141

@@ -101,7 +101,7 @@ document.write(studentNames); // 田中,佐藤,鈴木,内藤
101101

102102
---
103103

104-
## 基礎課題
104+
## 基礎演習
105105

106106
### 要素の和
107107

@@ -154,7 +154,7 @@ document.write(`配列の合計値は ${sum} です。`);
154154

155155
</Answer>
156156

157-
## 中級課題
157+
## 中級演習
158158

159159
### 配列の最大値
160160

0 commit comments

Comments
 (0)