document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. String s1 = "Araba";
  2. String s2 = "Araba";
  3.  
  4. if (s1.equals(s2))
  5. {
  6.     System.out.println("Eşit");
  7. }
  8. else
  9. {
  10.     System.out.println("Eşit Değil");
  11. }
  12.  
  13. # Eşit
');