Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Element;
- /**
- *
- * @author MaxSylverWolf
- */
- import java.util.Stack;
- import java.util.Scanner;
- /**
- *
- * @author MaxSylverWolf
- */
- public class Palindrom {
- public static void main(String[] args) {
- System.out.print("Wprowadź wyraz lub ciąg znaków: ");
- Scanner in=new Scanner(System.in);
- String wyraz = in.nextLine();
- Stack stos = new Stack();
- for (int i = 0; i < wyraz.length(); i++) {
- stos.push(wyraz.charAt(i));
- }
- String odwróconyWyraz = "";
- while (!stos.isEmpty()) {
- odwróconyWyraz = odwróconyWyraz+stos.pop();
- }
- if (wyraz.equals(odwróconyWyraz))
- System.out.println("To słowo/ciąg znaków jest palindromem!");
- else
- System.out.println("To słowo/ciąg znaków nie jest palindromem!");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement