未声明的标识符 error c2065 c2143

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了未声明的标识符 error c2065 c2143相关的知识,希望对你有一定的参考价值。

C语言源代码是这样的
#include<stdio.h>main(void) int num; printf("请输入你的幸运数字\n"); scanf("%d",&num); int i; for(i=0;i<num;i++) int j=0; while(j<i) printf(" "); j++; printf("GOOD LUCK\n"); return 0;
错误列表:
错误 2 error C2143: 语法错误 : 缺少“;”(在“类型”的前面) 行6列一
错误 3 error C2065: “i”: 未声明的标识符 行7列1
错误 4 error C2065: “i”: 未声明的标识符 行7列1
错误 5 error C2065: “i”: 未声明的标识符 行7列1
错误 6 error C2065: “i”: 未声明的标识符 行9列1
编译器用的是: Micosoft Visual Studio 2010

真不知道哪错了,求大侠帮忙

参考技术A #include<stdio.h>

int main(void) //这里加上int
 
    int num; 
    printf("请输入你的幸运数字\\n"); 
    scanf("%d",&num); 
    int i; 
    for(i=0;i<num;i++) 
        int j=0;  
        while(j<i)  
            printf(" ");  
            j++;  
          
        printf("GOOD LUCK\\n"); 
     
    return 0;

本回答被提问者采纳
参考技术B 把代码贴好看点,就看出来了。 
你可能哪里少了分号 。

C2065'cout':未声明的标识符

【中文标题】C2065\'cout\':未声明的标识符【英文标题】:C2065 'cout': undeclared identifier [closed]C2065'cout':未声明的标识符 【发布时间】:2018-08-31 14:44:19 【问题描述】:

所以我对 C++ 完全是个菜鸟,我正在尝试为作业制作一个简单的“Hello world”程序。我的代码如下:

#include "stdafx.h"
#include <iostream>
using namespace std;
int main() 
    cout<<"hello world!";
    return 0;

出于某种原因,VS2017 在cout 处抛出一个错误,说它是未定义的。我已经阅读了一些关于此的旧帖子并添加到#include "stdafx.h 以查看是否可以按照旧建议解决它,但它继续给我错误。有什么想法吗?

编辑:

又是一个完整的菜鸟,但是当我搜索它时会出现多个版本的 stdafx.h,这看起来像“主要”版本:

  // stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently,
// but are changed infrequently

#pragma once

#ifndef STRICT
#define STRICT
#endif

#include "targetver.h"

[!if SERVICE_APP]
#define _ATL_FREE_THREADED
[!else]
#define _ATL_APARTMENT_THREADED
[!endif]

#define _ATL_NO_AUTOMATIC_NAMESPACE

#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS  // some CString constructors will be explicit

[!if PREVIEW_HANDLER || THUMBNAIL_HANDLER || SEARCH_HANDLER]
#ifdef _MANAGED
#error File type handlers cannot be built as managed assemblies.  Set the Common Language Runtime options to no CLR support in project properties.
#endif

#ifndef _UNICODE
#error File type handlers must be built Unicode.  Set the Character Set option to Unicode in project properties.
#endif

#define SHARED_HANDLERS

[!endif]
[!if SUPPORT_MFC]
#include <afxwin.h>
#include <afxext.h>
#include <afxole.h>
#include <afxodlgs.h>
#include <afxrich.h>
#include <afxhtml.h>
#include <afxcview.h>
#include <afxwinappex.h>
#include <afxframewndex.h>
#include <afxmdiframewndex.h>

#ifndef _AFX_NO_OLE_SUPPORT
#include <afxdisp.h>        // MFC Automation classes
#endif // _AFX_NO_OLE_SUPPORT
[!endif]
[!if SUPPORT_COMPLUS]

#include <comsvcs.h>
[!endif]

#define ATL_NO_ASSERT_ON_DESTROY_NONEXISTENT_WINDOW

#include "resource.h"
#include <atlbase.h>
#include <atlcom.h>
#include <atlctl.h>

【问题讨论】:

奇怪。写信给我std::cout 您的安装完全损坏,或者您正在做的事情与您告诉我们的完全不同。这段代码应该可以毫无问题地编译。 呸。再次开始创建“控制台应用程序”。你似乎引入了各种 ATL 框架的东西。 你应该构建没有预编译的头文件(又名stdafx.h)。恕我直言,他们在学习简单程序时不值得麻烦。当您的程序变得庞大时,请考虑使用预编译的标头。创建项目时,搜索所有选项并取消选中预编译的标头(只是说不)。 @RudyVelthuis -- “默认情况下没有设置” -- 是的,微软会教坏习惯以将人们锁定在他们的工具中。 【参考方案1】:

error C2065: 'cout': undeclared identifier 是缺少#include &lt;iostream&gt; 的结果。第一个原因可能是stdafx.h 内容。您提供的那个,我不太确定它与您的main.cpp/project 有什么关系。让我们从一个新项目开始:...VS2017 IDE:创建新项目,ConsoleApplication 项目类型,并用你的替换 main() 函数。

一个 VS2017 IDE (15.8.2) 全新的 ConsoleApplication 项目:ConsoleApplication1

// ConsoleApplication1.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>

using namespace std;

int main() 

    cout << "hello world!";
    return 0;

stdafx.h:(由 IDE 生成)

// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//

#pragma once

#include "targetver.h"


// TODO: reference additional headers your program requires here

stdafx.cpp:(由 IDE 生成)

// stdafx.cpp : source file that includes just the standard includes
// ConsoleApplication1.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information

#include "stdafx.h"

// TODO: reference any additional headers you need in STDAFX.H
// and not in this file

targetver.h:(由 IDE 生成)

#pragma once

// Including SDKDDKVer.h defines the highest available Windows platform.

// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.

#include <SDKDDKVer.h>

** 此代码运行完美。 **

--

“当我搜索它时会出现多个版本的 stdafx.h” - 你是什么意思?在你的项目中?在互联网上?您不能只从互联网上获取一个stdafx.hstdafx.h 内容是为每个项目量身定制的,不是通用的。比如我上面提供的是IDE默认新建ConsoleApplication项目stdafx.h。您可以根据项目需要添加到文件中。

【讨论】:

以上是关于未声明的标识符 error c2065 c2143的主要内容,如果未能解决你的问题,请参考以下文章

vs中error c2065: “i”: 未声明的标识符怎么解决

奇怪的错误 C2065:“错误”:未声明的标识符

error C2065: “m_bFullScreen”: 未声明的标识

C语言错误 error C2059: 语法错误:“)”以及 错误error C2065: “sockaddr”: 未声明的标识符

error C2065: “M_PI”: 未声明的标识符

error C2065:!错误:未定义标识符“pBuf);”