Question
I need help with this project in JAVA, I would really appreciate it! Thanks in advance. Previous Project Code (Palindrome Checker): import java.util.Queue; import java.util.Scanner;
I need help with this project in JAVA, I would really appreciate it! Thanks in advance.
Previous Project Code (Palindrome Checker):
import java.util.Queue;
import java.util.Scanner;
import java.util.LinkedList;
class PalindromeTest {
public static void main(String[] args) {
System.out.print("Enter any string:");
Scanner in=new Scanner(System.in);
String inputString = in.nextLine();
Queue queue = new LinkedList();
for (int i = inputString.length()-1; i >=0; i--) {
queue.add(inputString.charAt(i));
}
String reverseString = "";
while (!queue.isEmpty()) {
reverseString = reverseString+queue.remove();
}
if (inputString.equals(reverseString))
System.out.println("The input String is a palindrome.");
else
System.out.println("The input String is not a palindrome.");
}
}
-------------------
1st link: http://usabilitypost.com/2009/04/15/8-characteristics-of-successful-user-interfaces/
2nd like: http://www.skylit.com/javamethods/faqs/createjar.html
Concepts: Java FX User Design Graphics Deployment Programming Project: Create a GUI using Java FX for one of the previous programming projects. Convert all console input/output to be used in a GUI. Follow standard programming practices for the design of the GUI. See this link for more details ? . Have fun with it. Submission Submit the executable jar file so that I can run your program. See this link on how to make an executable jar fileStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started