请用c#编写函数strend(s, t),如果宇符串t出现在了字符串s的尾部,返回1,否则0 要求输出有两种可能,yes 和no
时间: 2024-09-23 20:14:53 浏览: 38
strend
在C#中,你可以编写一个名为`CheckEndOfString`的函数来完成这个任务。下面是一个简单的示例:
```csharp
using System;
public class StringHelper
{
public static string Trend(string s, string t)
{
if (s.EndsWith(t))
{
return "yes";
}
else
{
return "no";
}
}
public static void Main()
{
Console.WriteLine(Trend("Hello World", "World")); // 输出: yes
Console.WriteLine(Trend("Test", "Testing")); // 输出: no
}
}
```
在这个函数中,我们使用了`string.EndsWith()`方法检查`s`是否以`t`结尾。如果是,则返回"yes";否则返回"no"。
阅读全文