单词调换位置
Time Limit: 1 Sec Memory Limit: 128 MB
Description
将用逗号隔开的两个英语单词交换位置输出
Input
一行以逗号隔开的两个单词
Output
将两个单词交换后输出
Sample Input
abc,de
Sample Output
de,abc
HINT
Source
#include<iostream> #include<string.h> using namespace std; main() { char s[10000],t[10000]; int i=0; while(cin>>s[i]) { if(s[i]==',') {s[i]='\0';break;} i++; } cin>>t; strcat(t,","); cout<<t<<s<<endl; }
转载请注明出处,谢谢.Q_Q