如何用c语言中的数组来实现“i love you ”变成“you love i”

或者数组结合指针也可以最好是比较精简的算法,使用一维数组... 或者数组结合指针也可以
最好是比较精简的算法,
使用一维数组
展开
 我来答
kuaidh00
2008-01-02 · TA获得超过713个赞
知道小有建树答主
回答量:382
采纳率:0%
帮助的人:536万
展开全部
#include <iostream.h>
#include <stdio.h>
#include <stdlib.h>

void reverse(int nN,char* b,char *c)
{
char temp;
for(int i=0;i<(nN/2);++b,--c,++i)
{
temp=*b;
*b=*c;
*c=temp;
}
}

void printS(char *s)
{
cout<<s<<endl;
}

int main()
{
char s[100],*h,*t;
int n=0;
cout<<"Please input your words: "<<endl;
gets(s);
h=t=s;
while(*t)
{
++n;
++t;
}
--t;
reverse(n,h,t);
printS(s);
return 0;

}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友82a5adf
2007-12-19 · 超过10用户采纳过TA的回答
知道答主
回答量:25
采纳率:0%
帮助的人:0
展开全部
#define N 3
#include<stdio.h>
main()
{
char str[N][20];
int i=0,j;
scanf("%s %s %s",str[i],str[i+1],str[i+2]);

for(i=0;i<N;i++)
printf("%s ",str[i]);
printf("\n");
for(i=N-1;i>=0;i--)
printf("%s ",str[i]);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
历又
2007-12-19 · TA获得超过299个赞
知道小有建树答主
回答量:726
采纳率:100%
帮助的人:449万
展开全部
#include<stdio.h>
main()
{
char str1[20]="i love you";
char str2[20]="you love i";
printf("%s ",str1);
printf("%s ",str2);

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式