用自己的算法实现startsWith和endsWith功能

 package hanqi;

 import java.util.Random;
import java.util.Scanner; public class zuoye { public static void main(String[] args) { System.out.println("请输入一个字符串");
Scanner sc =new Scanner(System.in);
String str1 = new String();
str1=sc.nextLine(); //输入一个字符串,用来判断使用 char kaitou;
kaitou=str1.charAt(0); //定义 kaitou 为刚才字符串的开头字母 System.out.println("请输入一个字符判断是否为字符串的开头");
Scanner a1 =new Scanner(System.in);
String str2 = new String();
str2=a1.nextLine();
char kaitou1;
kaitou1=str2.charAt(0); if(kaitou==kaitou1)
{
System.out.println("输入的是开头");
}
else
{
System.out.println("输入的不是字符串的开头");
} } }

用自己的算法实现startsWith和endsWith功能

上一篇:费用提前计算相关的DP(BZOJ2037,POJ3042,ZOJ3469)


下一篇:Git Flow流程