473,609 Members | 1,831 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Palindrome assignment

22 New Member
I am still having an exceptional amount of trouble with java. This is my new assignment, if anyone can help I would greatly appreciate it. I don't even know where to start.

A word or phrase in which the letters spell the same message when written forward and backward (with whitespaces and punctuations not considered) is called a palindrome.

Write a simple Java program that detects palindromes. Your program should be named "PalindromeDete ctor.java", and the class in it should be named "PalindromeDete ctor".

The program should first ask for the input text:
Input text? user input

If the entered text is a palindrome, display the message:
This is a palindrome.

Otherwise display:
This is not a palindrome.

Notice that whitespaces and punctuations not considered; cases of characters don't matter, either. Thus the strings "ab, a " and "Was it a cat I saw?" are both palindromes. You can assume that the user input only possibly includes the following four punctuation marks:
, . ! ?
Mar 25 '07 #1
3 6123
r035198x
13,262 MVP
I am still having an exceptional amount of trouble with java. This is my new assignment, if anyone can help I would greatly appreciate it. I don't even know where to start.

A word or phrase in which the letters spell the same message when written forward and backward (with whitespaces and punctuations not considered) is called a palindrome.

Write a simple Java program that detects palindromes. Your program should be named "PalindromeDete ctor.java", and the class in it should be named "PalindromeDete ctor".

The program should first ask for the input text:
Input text? user input

If the entered text is a palindrome, display the message:
This is a palindrome.

Otherwise display:
This is not a palindrome.

Notice that whitespaces and punctuations not considered; cases of characters don't matter, either. Thus the strings "ab, a " and "Was it a cat I saw?" are both palindromes. You can assume that the user input only possibly includes the following four punctuation marks:
, . ! ?
Colin, go back to your teacher and explain to him your problems with the assignment. Once you get to understand the assignment better, you can come back with some code written and we can help from there.
Mar 26 '07 #2
colinNeedsJavaHelp
22 New Member
ok so this is what I have for the code so far:

Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3. public class PalTest
  4.   {
  5.    public static void main(String[] args)
  6.    throws java.io.IOException   
  7.   {
  8.    String inputString;
  9.    StringBuffer S;
  10.  
  11.    InputStreamReader isr = new InputStreamReader(System.in);
  12.  
  13.    BufferedReader br = new BufferedReader(isr);
  14.  
  15.    System.out.println("Input Text? ");
  16.    inputString  = br.readLine();
  17.  
  18.    S = new StringBuffer(inputString);
  19.    S.reverse();
  20.  
  21.    if (inputString.equalsIgnoreCase(S.toString())) {
  22.    System.out.println("This is a palindrome.");
  23.   }
  24.   else {
  25.   System.out.println("This is not a palindrome.");
  26. }
  27. }
  28. }
  29.  
My only problem now is getting it to accept the punctuations , . ! ?
Mar 27 '07 #3
r035198x
13,262 MVP
ok so this is what I have for the code so far:

Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3. public class PalTest
  4. {
  5. public static void main(String[] args)
  6. throws java.io.IOException 
  7. {
  8. String inputString;
  9. StringBuffer S;
  10.  
  11. InputStreamReader isr = new InputStreamReader(System.in);
  12.  
  13. BufferedReader br = new BufferedReader(isr);
  14.  
  15. System.out.println("Input Text? ");
  16. inputString = br.readLine();
  17.  
  18. S = new StringBuffer(inputString);
  19. S.reverse();
  20.  
  21. if (inputString.equalsIgnoreCase(S.toString())) {
  22. System.out.println("This is a palindrome.");
  23. }
  24. else {
  25. System.out.println("This is not a palindrome.");
  26. }
  27. }
  28. }
  29.  
My only problem now is getting it to accept the punctuations , . ! ?
What problems are you getting with the punctuation?
Mar 28 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

4
13850
by: Lorin Leone | last post by:
Can anyone help me modify the program so that it recognizes strings like "Anna" as palindromes. To make the program "case-insensitive." using the built-in C++ function "toupper". and so that it recognizes strings like "race car" as palindromes, have the program ignore spaces in the input string. Here is my code:
23
3183
by: Amar Prakash Tripaithi | last post by:
Dan Hoey, who had recently graduated, wrote a C program to look for and construct the following beauty: A man, a plan, a caret, a ban, a myriad, a sum, a lac, a liar, a hoop, a pint, a catalpa, a gas, an oil, a bird, a yell, a vat, a caw, a pax, a wag, a tax, a nay, a ram, a cap, a yam, a gay, a tsar, a wall, a car, a luger, a ward, a bin, a woman, a vassal, a wolf, a tuna, a nit, a pall, a fret, a watt, a bay, a daub, a tan, a cab, a...
32
11421
by: ramakrishnadeepak | last post by:
HI Everybody, I 've to submit a program on c.Can any one help me plz.........The problem is like this:: Write a program which computes the largest palindrome substring of a string. Input: The input is the string whose largest palindrome substring should be
4
4592
by: outofmymind | last post by:
hi, im trying to solve the following question: Create a class responsible for determining whether a string is a palindrome. Show your test cases. Palindome mypal("bob"); mypal.Ispalindrome(); // should return true i tried to do the code, but im having problems in comlpeting it, I hope that some one can help me know how im supposed to finish it off this is the code that i did: #include <iostream>
2
2783
by: Synapse | last post by:
aloha people! I need help in my java palindrome program. It's a 5-digit palindrome checker. The code below is running good but i got a few problems on it. If I enter 33633, 11211, 45554, it will return It's a Palindrome! and if I enter 33636 or 11214, it returns It's not a Palindrome!
20
13381
by: Wabz | last post by:
Hello mates, Does anyone know how to write a function that tests if an integer is a palindrome in C language?
2
4134
by: bigtd08 | last post by:
help writing this palindrome program for my c++ class. HERE WHAT THE CODE SHOULD BE LIKE. Write a program that takes a line of input from the keyboard and check to see if that line is a palindrome. Your program should ignore blanks, punctuation, and lettercase Your program should output what the user entered as well as the reversed line. Sample output: Please enter a phrase, and I will tell you if it is a palindrome. >> Madam I'm Adam
8
4871
by: chungjoel | last post by:
Hi, i'm new to C programming and i could use some help with an assignment. i would like to store a word in a linked list, with each letter of the word in a separate node of the linked list. i would then like to traverse the linked list to check whether the word is a palindrome. the nodes in the palindrome should be double pointer nodes. i'm not quite sure how to start here, any assistance will be appreciated.
7
22547
by: xiaolim | last post by:
hi, sorry to disturb again, currently i have an assignment on stacks and as show in the the title, i need to use stacks to determine palindrome. i've done part of my code, here it is: // Write your name, student number, part-time/full time, degree here #include <string> #include <iostream> #define STACKSIZE 80 #define TRUE 1
0
8139
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8091
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8232
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8408
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7024
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6064
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5524
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4098
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2540
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.