请用c#编写函数strend(s, t),如果宇符串t出现在了字符串s的尾部,返回1,否则0 要求输出有两种可能,yes 和no
时间: 2024-09-23 08:14:53 浏览: 53
在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"。
相关问题
java编写一函数strend(s, t),如果字符串t出现在字符串s的尾部,该函数返回1,否则返回0
下面是Java语言实现的代码:
```
public static int strend(String s, String t) {
if (s.endsWith(t)) {
return 1;
} else {
return 0;
}
}
```
该函数使用Java字符串类的`endsWith()`方法来判断字符串`t`是否出现在字符串`s`的尾部。如果是,则返回1,否则返回0。
用java编写一函数strend(s, t),如果字符串t出现在字符串s的尾部,该函数返回1,否则返回0。要求在main函数中测试该函数:先从键盘输入字符串s、t(不超过100个字符),然后调用该函数,并输出返回的结果。
好的,这是Java中实现该函数的代码:
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入字符串s:");
String s = scanner.nextLine();
System.out.print("请输入字符串t:");
String t = scanner.nextLine();
int result = strend(s, t);
if (result == 1) {
System.out.println("字符串t出现在字符串s的尾部");
} else {
System.out.println("字符串t未出现在字符串s的尾部");
}
}
public static int strend(String s, String t) {
int sLen = s.length();
int tLen = t.length();
if (sLen < tLen) {
return 0;
}
String endStr = s.substring(sLen - tLen);
if (endStr.equals(t)) {
return 1;
} else {
return 0;
}
}
}
```
在该程序中,我们通过 `Scanner` 类从键盘获取输入的字符串 `s` 和 `t`,然后调用 `strend()` 函数进行判断,并输出结果。函数 `strend()` 首先计算字符串 `s` 和 `t` 的长度,如果 `s` 的长度小于 `t` 的长度,那么 `t` 不可能是 `s` 的子串,直接返回0。接着,我们通过 `substring()` 方法截取字符串 `s` 的尾部与 `t` 相同长度的子串,然后判断该子串是否与 `t` 相等,如果相等,说明 `t` 出现在 `s` 的尾部,返回1,否则返回0。
阅读全文