首页 > 代码库 > hdu 5082 Love(Bestcoder Round #15)
hdu 5082 Love(Bestcoder Round #15)
Love
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 78 Accepted Submission(s): 57
Problem Description
There is a Love country with many couples of Darby and Joan in it. In order to commemorate their love, they will do some thing special when giving name to their offspring.
When a couple want to give name to their offspring, they will firstly get their first names, and list the one of the male before the one of the female. Then insert the string “small” between their first names. Thus a new name is generated. For example, the first name of male is Green, while the first name of the female is Blue, then the name of their offspring is Green small Blue.
You are expected to write a program when given the name of a couple, output the name of their offsping.
When a couple want to give name to their offspring, they will firstly get their first names, and list the one of the male before the one of the female. Then insert the string “small” between their first names. Thus a new name is generated. For example, the first name of male is Green, while the first name of the female is Blue, then the name of their offspring is Green small Blue.
You are expected to write a program when given the name of a couple, output the name of their offsping.
Input
Multi test cases (about 10), every case contains two lines.
The first line lists the name of the male.
The second line lists the name of the female.
In each line the format of the name is [given name]_[first name].
Please process to the end of file.
[Technical Specification]
3≤ the length of the name ≤ 20
[given name] only contains alphabet characters and should not be empty, as well as [first name].
The first line lists the name of the male.
The second line lists the name of the female.
In each line the format of the name is [given name]_[first name].
Please process to the end of file.
[Technical Specification]
3
[given name] only contains alphabet characters and should not be empty, as well as [first name].
Output
For each case, output their offspring’s name in a single line in the format [first name of male]_small_[first name of female].
Sample Input
Jim_Green Alan_Blue
Sample Output
Green_small_Blue
水题,随便搞搞。
代码:
#include <iostream> #include <cstdio> #include <string> #include <cstring> using namespace std; string s1,s2; int main() { while(cin>>s1>>s2) { string s; s.clear(); int i; for(i=0;i<s1.size();i++) { if(s1[i]=='_') break; } for(i=i+1;i<s1.size();i++) { s.push_back(s1[i]); } string temp="_small_"; s=s+temp; for(i=0;i<s2.size();i++) { if(s2[i]=='_') break; } for(i=i+1;i<s2.size();i++) { s.push_back(s2[i]); } cout<<s<<endl; } return 0; }
hdu 5082 Love(Bestcoder Round #15)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。