编写一函数strend(s, t),如果字符串t出现在字符串s的尾部,该函数返回Yes,否则返回No。要求在main函数中测试该函数:先从键盘输入字符串s、t(不超过100个字符),然java后调用该函数,并输出返回的结果。
时间: 2024-01-22 18:19:53 浏览: 64
以下是实现该功能的代码:
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("请输入字符串s:");
String s = input.nextLine();
System.out.print("请输入字符串t:");
String t = input.nextLine();
if (strend(s, t)) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
public static boolean strend(String s, String t) {
if (s.endsWith(t)) {
return true;
} else {
return false;
}
}
}
```
函数 `strend` 判断字符串 `t` 是否出现在字符串 `s` 的尾部,它使用了 `String` 类的 `endsWith` 方法。`main` 函数从键盘输入字符串 `s` 和 `t`,然后调用 `strend` 函数,并根据函数返回的结果输出相应的字符串。
阅读全文