EX2 – エラーの修正をやってみた

問題(https://atcoder.jp/contests/APG4b/tasks/APG4b_cu)を解いてみた。

修正箇所は「”」と「;」の付け忘れ、「5」の書き忘れ。

私の環境ではbits/stdc++.hは通らないのでiostreamに変更している。

あとusing namespace std;は宗教上の都合で削除した。

修正前

#include <bits/stdc++.h>
using namespace std;
 
int main() {
  cout << "いつも << 252 << endl;
  cout << "AtCoderくん" << endl
}

修正後

#include <iostream>

int main() {
	std::cout << "いつも" << 2525 << std::endl;
	std::cout << "AtCoderくん" << std::endl;
}

コメント

タイトルとURLをコピーしました