Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2341785
  • 博文数量: 816
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 5010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-17 17:57
文章分类

全部博文(816)

文章存档

2011年(1)

2008年(815)

分类:

2008-12-17 18:04:34

 C++程序设计的问题  
//题目:《C++程序设计基础》2003年8月第一版
//5 cin string cout gnirts.


#include
#include
#include

struct code
{
char* str;
code*next ;

};




void main ( )
{
//char*str = new char;
char*a= new char;
cout << " input some string ."<gets(a);
int max = strlen(a);
cout << a[max-1]<code *head ;
//head = null;
//creatlist( ) ;
//printlist();




code* creatlist(char *a )
{
code *p,*s;
s = new code;
s->str = a[max-1];
head = s;
p = s;
int i;
for ( i=max-1;i>=0;i--)
{
s= new code ;
s->str = a[i];
p->next = s ;
p = s;
//absort(i>mas);
//adsort(i<0);
}
p->next = null;
delect s;
return head;
};
void printlist (code*head)
{
int i ;
for (i = 0;i{
cout str <<"\t";
hrad=head->next ;
}
}



}
我用C==6.0编译,
错误 是:

--------------------Configuration: 7box - Win32 Debug--------------------
Compiling...
5char.cpp
F:\C++\第五章\5char.cpp(37) : error C2601: 'creatlist' : local function definitions are illegal
F:\C++\第五章\5char.cpp(58) : error C2601: 'printlist' : local function definitions are illegal
Error executing cl.exe.

5char.obj - 2 error(s), 0 warning(s)




--------------------next---------------------

阅读(1176) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~