“Comparez deux cordes java” Réponses codées

en Java comment comparer deux cordes

class scratch{
    public static void main(String[] args) {
        String str1 = "Nyello";
        String str2 = "Hello";
        String str3 = "Hello";

        System.out.println( str1.equals(str2) ); //prints false
        System.out.println( str2.equals(str3) ); //prints true
    }
}
Nitbit25

Comparez deux cordes java

class Main {
  public static void main(String[] args) {

    // create 3 strings
    String first = "java programming";
    String second = "java programming";
    String third = "python programming";

    // compare first and second strings
    boolean result1 = first.equals(second);
    System.out.println("Strings first and second are equal: " + result1);

    // compare first and third strings
    boolean result2 = first.equals(third);
    System.out.println("Strings first and third are equal: " + result2);
  }
}
SAMER SAEID

Réponses similaires à “Comparez deux cordes java”

Questions similaires à “Comparez deux cordes java”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code