スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:コンパイルエラーメッセージ:error C2062: 型 'int' は不要です。ソース(バグ有り):
#include <iostream> using namespace std; int main() { int n = 0; do { cout << "n=" << n << endl; n++; } int m=0; }
ソース(修正済み):
#include <iostream> using namespace std; int main() { int n = 0; do { cout << "n=" << n << endl; n++; }while (n < 10); int m=0; }
[コンパイルエラーコード、メッセージに戻る]