using System.Collections;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
using System;
namespace class20240724
{
internal class Program
{
static void Main(string[] args)
{
int count = int.Parse(Console.ReadLine());
for(int i = 0; i < count; i++)
{
string line = Console.ReadLine();
string[] arr = line.Split(',');
if (arr[0].EndsWith("ong") && arr[1].EndsWith("ong."))
{
string[] arr2 = arr[1].Split();
arr2[arr2.Length - 1] = "zhong.";
arr2[arr2.Length - 2] = "ben";
arr2[arr2.Length - 3] = "qiao";
string merge = string.Join(" ", arr2);
Console.WriteLine(arr[0]+","+merge);
}
else
{
Console.WriteLine("Skipped");
}
}
}
}
}
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » L1-059 敲笨钟 c#
发表评论 取消回复