标签:space 长度 names iostream namespace pac problem std 编写程序
编写程序,读入一行英文(只包含字母和空格,单词间以单个空格分隔),将所有单词的顺序倒排并输出,依然以单个空格分隔。
I am a student
student a am I
代碼實現:
1 #include<iostream> 2 using namespace std; 3 int n; 4 char word[100][100]; 5 int main(){ 6 while(cin>>word[++n]); 7 for(n--;n>0;n--) cout<<word[n]<<" "; 8 cout<<endl; 9 return 0; 10 }
。。。
标签:space 长度 names iostream namespace pac problem std 编写程序
原文地址:http://www.cnblogs.com/J-william/p/6156899.html