String a ="abcdefbg";
Scanner scan = new Scanner(System.in); //输入扫描器
String b = scan.next(); //输入字符
int c = a.lastIndexOf(b); //判断输入的字符串在需要判断的字符串中的位置
int d = a.length();
int e = b.length();
if(d-c==e) //根据字符串和位置的长度相减,得出结论
{
System.out.println("输入的字符或字符串位于最后一位");
}
else
{
System.out.println("输入的字符或字符串不位于最后一位");
}
时间: 2024-10-21 05:59:05