Skip to content

Commit

Permalink
プログラミング能力検定協会様からのフィードバックを受けて修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Takeno-hito committed Jul 11, 2024
1 parent b820641 commit bac4bbc
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/text/chapter-1/terminal.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ int main() {
}
```

- 保存して、VSCode 上で 「Run Code」
- "Hello, traP!" と書いてる部分をいじったら出力が変わりそう?
- 保存して、VSCode 上で 「Run Code」で実行できる。
- `Hello, traP!` となっている部分を書き換えると出力が変わる。実際に試してみよう。

::: tip I 章のまとめ

Expand Down
22 changes: 19 additions & 3 deletions docs/text/chapter-2/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,20 @@ int main() {

波括弧を閉じている。

## 2.1.0. コメント

`//` と書くと、その行の `//` 以降の部分はコメントになり、ブログラム実行時には無視される。

::: tip
プログラムの先頭に `//` を付けてコメントにする事をコメントアウトする、と呼ぶことがある。
:::

プログラムがどのような動作をするのか、どういう目的のプログラムなのか、を簡易的に記述すると良い。見たら分かるというレベルになれば、コメントを書く必要はない。

```cpp:no-line-numbers
// Hello, traP を出力する
```

## 2.1.1. cout

<<<@/text/chapter-2/hello-world.cpp{5}
Expand Down Expand Up @@ -136,8 +150,10 @@ standard くらいは知っても良いだろう)、毎回`std::` と書くの

<<<@/text/chapter-2/hello-world.cpp{4 cpp:line-numbers}

コンピューターは main 関数 を実行する。
「関数」については V 章で扱う。
コンピューターは main 関数 を実行する。main 関数の中身がプログラムのメインの部分と捉えても良い。
「関数」についての詳細は V 章で扱う。

ソースコードの中で `int main()` の後の `{` と、最終行の `}` は対応していて、 `{ }` の内側が main
関数の内容である。今のところは、「`{` からプログラムが始まって、末尾の`}` で終わる」と考えて良い。
関数の内容である。

今のところは、「`{` からプログラムが始まって、末尾の`}` で終わる」と考えれば十分である。
2 changes: 1 addition & 1 deletion docs/text/chapter-3/if-else.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

特定の条件を満たす時だけ実行したい時は、if 文を用いる。if の後に条件を記し、その後の `{}` に条件を満たしていた時だけ実行したい命令を記述する。

以下は、入力された点数が点数が60点以上であれば「合格」、そうでなければ「不合格」と表示するプログラムである。
以下は、入力された点数が60点以上であれば「合格」、そうでなければ「不合格」と表示するプログラムである。

```cpp:line-numbers
#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion docs/text/chapter-4/array.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ vector<string> strarray;
vector<int> arr = {10, 20, 30, 40, 50};
```

以下のように、 `[]` の中に数字を書くことで要素を取得できる。数列を考えた時の $a_i$ の $i$ だと思うと良い。この時要素は*
以下のように、 `[]` の中に数字を書くことで要素を取得できる。数列を考えた時の $a_i$ の $i$ だと思うと良い。この時要素番号は*
*0始まり**である。

```cpp:line-numbers
Expand Down

0 comments on commit bac4bbc

Please sign in to comment.