基础练习 字符串对比

Posted Luking

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础练习 字符串对比相关的知识,希望对你有一定的参考价值。

--------------------------------------------------------------------------------

java有很多可以拿来用的方法为什么不用呢

--------------------------------------------------------------------------------

 1 import java.util.*;
 2 public class Main {
 3     public static void main(String[] args) {
 4         Scanner sc = new Scanner(System.in);
 5         String a1 = sc.nextLine();
 6         String a2 = sc.nextLine();
 7         if(a1.length()==a2.length())
 8             if(a1.toLowerCase().equals(a2.toLowerCase()))
 9                 if(a1.equals(a2))
10                     System.out.println(2);
11                 else
12                     System.out.println(3);
13             else
14                 System.out.println(4);
15         else
16             System.out.println(1);
17     }
18 }

 

 

 

 

 

 

以上是关于基础练习 字符串对比的主要内容,如果未能解决你的问题,请参考以下文章

蓝桥杯_基础练习《字符串对比---29》

基础练习 字符串对比

基础练习 字符串对比

Java蓝桥杯基础练习

Python matplotlib 基础练习:画出正弦曲线等

《C#零基础入门之百识百例》(六十五)类和结构体的对比 -- 文字对战游戏