10361专题

uva 10361 Automatic Poetry(字符串处理)

Automatic Poetry Input: standard input Output: standard output Time Limit: 2 seconds Memory Limit: 32 MB   “Oh God”, Lara Croft exclaims, “it’s one of these dumb riddles again!”   In Tomb

UVA之10361 - Automatic Poetry

Problem I Automatic Poetry Input: standard input Output: standard output Time Limit: 2 seconds Memory Limit: 32 MB   “Oh God”, Lara Croft exclaims, “it’s one of these dumb riddles ag

UVA-10361 Automatic Poetry

原题连接: https://vjudge.net/problem/UVA-10361 AC代码: #include <bits/stdc++.h>using namespace std;void getsi(char str[]){char c;int i = 0;while (c = getchar()){if (c != '<' && c != '>' && c != '\n'

UVA 10361 Automatic Poetry

yiyi: 输入: 输入N组测试用例,每组输入两个字符串。 第一个字符串格式:s1<s2>s3<s4>s5 s1,s2,s3,s3,s4,s5都可以为空或者不存在或者全是小写字符 第二个字符串格式:s .... 输出: 每组测试用例输出两个字符串。 第一个字符串格式:s1s2s3s4s5 第二个字符串格式:ss4s3s2s5 yiyi: 当给s1,s2,s3