当前位置: 代码迷 >> C语言 >> [求助]为什么这句语句cout
  详细解决方案

[求助]为什么这句语句cout

热度:274   发布时间:2006-07-26 16:43:50.0
[求助]为什么这句语句cout

/* HELLO.C -- Hello, world */

#include "stdio.h"
#include "conio.h"

void main()
{
int i;
int a[3][3]={'1','2','3','4','5','6','7','8','9'};
for(i=0;i<3;i++)
cout<<a[i][1]<<"";
cout<<end1;
}


我运行了一下,可是出现了错误.但我不知道错的原因.请各位师傅帮我看一下.谢谢!

搜索更多相关的解决方案: cout  语句  int  include  师傅  

----------------解决方案--------------------------------------------------------
.....

[此贴子已经被作者于2006-7-26 16:53:38编辑过]



----------------解决方案--------------------------------------------------------


这是C还是C++

头文件 ? stdio.h : iostream


----------------解决方案--------------------------------------------------------
oh , sorry, i make a mistake.

error: cout<<end1;
----------------解决方案--------------------------------------------------------
提示: 作者被禁止或删除 内容自动屏蔽

2006-07-26 09:04:24
lifang04

等 级:新手上路
帖 子:2
专家分:0
注 册:2006-7-26
  得分:0 

我在看全国计算机等级考试C++的试题,因为我看不懂,在WIN-TC中运行一下,可惜出错了,所以让各位师傅看一下.


----------------解决方案--------------------------------------------------------
C++的怎么放在win-tc 里编译
----------------解决方案--------------------------------------------------------