Search:

Type: Posts; User: gershonvish

Search: Search took 0.11 seconds.

  1. Re: Hello i will happy that you will help me :)

    String s1= "Hello ";
    String s2= "world";

    String s= s1+s2;

    String n = "Hello world";


    if (n.equals(s)) System.out.println(n); => "Hello world" yes work :) Thank you
  2. Hello i will happy that you will help me :)

    I want to know why it does not work ... If there is another way?

    String s1= "Hello ";
    String s2= "world";

    String s= s1+s2;

    String n = "Hello world";
Results 1 to 2 of 2