Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/cpp/chapter-7/problems/max-of-three.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ using namespace std;

int main() {
int a, b, c;
cin >> a >> b >> c
cin >> a >> b >> c;
cout << max_of_three(a, b, c) << endl;
}
```
Expand Down Expand Up @@ -80,7 +80,7 @@ int max_of_three(int x, int y, int z) {

int main() {
int a, b, c;
cin >> a >> b >> c
cin >> a >> b >> c;
cout << max_of_three(a, b, c) << endl;
}
```
Expand Down
2 changes: 2 additions & 0 deletions docs/cpp/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,11 @@ hero:
- [7.2 引数](/cpp/chapter-7/2)
- [7.3 返り値](/cpp/chapter-7/3)
- [7.4 [発展] 参照渡し](/cpp/chapter-7/4)
- [練習問題](/cpp/chapter-7/problems/)
- [8. 構造体](/cpp/chapter-8/)
- [8.1 構造体とは](/cpp/chapter-8/1)
- [8.2 メソッド](/cpp/chapter-8/2)
- [練習問題](/cpp/chapter-8/problems/)

::: details 2025年度版テキスト

Expand Down
2 changes: 2 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,11 @@ hero:
- [7.2 引数](/cpp/chapter-7/2)
- [7.3 返り値](/cpp/chapter-7/3)
- [7.4 [発展] 参照渡し](/cpp/chapter-7/4)
- [練習問題](/cpp/chapter-7/problems/)
- [8. 構造体](/cpp/chapter-8/)
- [8.1 構造体とは](/cpp/chapter-8/1)
- [8.2 メソッド](/cpp/chapter-8/2)
- [練習問題](/cpp/chapter-8/problems/)

::: details 2025年度版テキスト

Expand Down
Loading