-5
我已經嘗試過,但我無法向後打印中間單詞!如何更改字符數組的中間字向後
ex。輸入=這個詞落後;輸出=此卓爾向後
char chai[80];
int cont=0;
cout << "Enter odd string words to reverse the one of the middle: ";
cin.getline(chai,80);
for(int x=0; x< strlen(chai) ;++x)
{
if(chai[x]==' ')
++cont;
}
任何建議所理解的,
可以舉個例子? – 2017-03-04 21:00:53
ex。輸入=這個詞落後; output = this drow backward –
你可以在JAVA中使用'split()'方法,使用空格作爲分隔符,然後嘗試訪問數組中的中間並反轉它,然後用新內容重建字符串^ _ ^ – 2017-03-05 13:09:36