Microsoft Visual C++ 2005 速成版 怎么不能通过?
#include<conio.h>int main(void)
{
window(10,10,40,11);
textcolor(BLACK);
textbackground(WHITE);
cprintf("this is a test\r\n");
return 0;
}
----------------解决方案--------------------------------------------------------
1>------ 已启动生成: 项目: 窗口, 配置: Debug Win32 ------
1>正在编译...
1>窗口源.cpp
1>e:\my documents\visual studio 2005\projects\窗口\窗口源.cpp(4) : error C3861: “window”: 找不到标识符
1>e:\my documents\visual studio 2005\projects\窗口\窗口源.cpp(5) : error C2065: “BLACK”: 未声明的标识符
1>e:\my documents\visual studio 2005\projects\窗口\窗口源.cpp(5) : error C3861: “textcolor”: 找不到标识符
1>e:\my documents\visual studio 2005\projects\窗口\窗口源.cpp(6) : error C2065: “WHITE”: 未声明的标识符
1>e:\my documents\visual studio 2005\projects\窗口\窗口源.cpp(6) : error C3861: “textbackground”: 找不到标识符
1>生成日志保存在“file://e:\My Documents\Visual Studio 2005\Projects\窗口\Debug\BuildLog.htm”
1>窗口 - 5 个错误,0 个警告
========== 生成: 0 已成功, 1 已失败, 0 最新, 0 已跳过 ==========
----------------解决方案--------------------------------------------------------
语法错误,没有标符号
----------------解决方案--------------------------------------------------------
回复 1# 的帖子
<conio.h>你这里用的好几个函数都是TC扩展,在win32下的vc中当然不能用啦。
----------------解决方案--------------------------------------------------------
回复 4# 的帖子
哦,原来是这样呀。那你认为我学c语言是用vc好还是用tc好呀。 ----------------解决方案--------------------------------------------------------
vc吧,不过初学的话,我推DEVC++,容易上手,也简单。
----------------解决方案--------------------------------------------------------
那该怎么改才对呢?
我也很知道喔~~~
关注中
----------------解决方案--------------------------------------------------------
----------------解决方案--------------------------------------------------------
建议不要再vc++上编译这样的程序,要用的话用 ANSI C
----------------解决方案--------------------------------------------------------
没有加标识符
我想前面加一句
using namespace std;
就能通过,我没有测试,你自己试一下
看看VC++2005的新特性
#include <iostream>
#define 使用 using
#define 命名空间 namespace
#define 标准空间 std
#define 定义类 class
#define 公共成员 public
#define 整数 int
#define 无类型 void
#define 标准输出流 cout
#define 行尾 endl
#define 私有成员 private
#define 主函数入口 main
#define 返回 return
#define 左括号 (
#define 右括号 )
#define 左花括号 {
#define 右花括号 }
#define 语句结束 ;
#define 冒号 :
#define 输出它 <<
#define 就算是 =
----------------解决方案--------------------------------------------------------