2个回答
展开全部
#include <iostream.h>
/*
C++中构造一个简单的string类 其中包含一个倒序函数,可是字串倒序排列
*/
void sort(char *a)
{
int count = 0;
char *p = a;
for (p; *p !='\0'; p++) //while (*p)
{
cout << *p << endl;
count++;
}
cout << count;
for (int i = 0; i < count; i++)
{
p--;
cout << *p;
}
}
int main()
{
sort ("abcde");
return 0;
}
/*
C++中构造一个简单的string类 其中包含一个倒序函数,可是字串倒序排列
*/
void sort(char *a)
{
int count = 0;
char *p = a;
for (p; *p !='\0'; p++) //while (*p)
{
cout << *p << endl;
count++;
}
cout << count;
for (int i = 0; i < count; i++)
{
p--;
cout << *p;
}
}
int main()
{
sort ("abcde");
return 0;
}
展开全部
#include
<iostream.h>
/*
C++中构造一个简单的string类
其中包含一个倒序函数,可是字串倒序排列
*/
void
sort(char
*a)
{
int
count
=
0;
char
*p
=
a;
for
(p;
*p
!='\0';
p++)
//while
(*p)
{
cout
<<
*p
<<
endl;
count++;
}
cout
<<
count;
for
(int
i
=
0;
i
<
count;
i++)
{
p--;
cout
<<
*p;
}
}
int
main()
{
sort
("abcde");
return
0;
}
<iostream.h>
/*
C++中构造一个简单的string类
其中包含一个倒序函数,可是字串倒序排列
*/
void
sort(char
*a)
{
int
count
=
0;
char
*p
=
a;
for
(p;
*p
!='\0';
p++)
//while
(*p)
{
cout
<<
*p
<<
endl;
count++;
}
cout
<<
count;
for
(int
i
=
0;
i
<
count;
i++)
{
p--;
cout
<<
*p;
}
}
int
main()
{
sort
("abcde");
return
0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询