1. 程式人生 > >HDU2567 尋夢

HDU2567 尋夢

urn style cstring strlen i++ pri code %d str

思路:輸出第一個字符串的一半,在輸出整個第二個字符串,最後輸出第一個字符串剩余的。

#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int main(void)
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        char s1[100];
        
char s2[100]; scanf("%s%s",s1,s2); int len = strlen(s1); for(int i = 0; i < len/2; i++) printf("%c",s1[i]); printf("%s",s2); for(int i = len/2; i < len; i++) printf("%c",s1[i]); printf("\n"); } return
0; }

HDU2567 尋夢