Code Fix

初級error: expected '}' at end of input の原因と直し方 › パターン1

error: expected '}' at end of input の原因と直し方

波括弧{}の対応が崩れ、閉じ忘れがあるときに出るエラーです。

 1  #include <iostream>
 2  int main() {
 3      if (true) {
 4          std::cout << "yes" << std::endl;
 5      _
        ^
 6      return 0;
 7  }
main.cpp:7:2: error: expected '}' at end of input

空欄を埋めてコンパイル・実行を通す

広告
広告スロット(未設定)

error: expected '}' at end of input の原因と直し方

ファイルの終わりまで読んでもブロックが閉じられないため、末尾でエラーになります。

このエラーの解説と類題をまとめて見る →

広告
広告スロット(未設定)