前端之家收集整理的这篇文章主要介绍了
004单词倒置,标点不换,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
int _tmain(int argc,_TCHAR* argv[])
{
char s[100];
gets(s);
int len=strlen(s);
char a[1000];
int j=0;
for(int i=len-1;i>=0;i--)
{
a[j++]=s[i];
}
a[j]='\0';
cout<<a<<endl;
char b[1000],temp;
int m,begin,end;
int i=0;
while(a[i])
{
if(a[i]!=' ')
{
begin=i;
while (a[i]&&a[i]!=' ')
{
i++;
}
i=i-1;
end=i;
}
while (end>begin)
{
temp=a[begin];
a[begin]=a[end];
a[end]=temp;
end--;
begin++;
}
i++;
}
cout<<a<<endl;
return 0;
}
原文链接:/javaschema/284552.html