// Online Java Compiler // Use this editor to write, compile and run your Java code online import java.util.*; class Niz3 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Vnesi besedo: "); String beseda = sc.nextLine(); String obrnjena = ""; for (int i = beseda.length()-1; i >= 0; i--){ obrnjena += beseda.charAt(i); } System.out.println(beseda + " - " + obrnjena); if (beseda.equals(obrnjena)) System.out.println("Beseda je palindrom"); else System.out.println("Beseda ni palindrom"); } }