examples

examples

View Answers

March 12, 2009 at 5:19 AM

Hi friend,

Code to help in solving the problem :

import java.io.*;
class Plaindrome
{
public static void main(String[] args)
{

String string = "";
InputStreamReader input = new InputStreamReader(System.in);
BufferedReader reader = new BufferedReader(input);
// read in user input
boolean bool=false;

do{
try
{
System.out.println("Please enter 5 digit number.");
string = reader.readLine();
}
catch(Exception e){}
int num=Integer.parseInt(string);
int rev=0;
int rem=0;
int n = num;
while(n!=0)
{
rem=n%10;
rev=rev*10+rem;
n/=10;

}
if(num!=rev)
{
System.out.println("Please enter again valid number");
bool=true;
}
else
{
System.exit(0);
}
}
while(bool);
}
}

Thanks

March 13, 2009 at 1:21 AM

Hi Friend

This is the full code according to your full requirement.

// Code Starts

import javax.swing.*;
import java.awt.event.*;

public class Pallindrome{
public static void main(String[] args){
JFrame frame = new JFrame("Calculate Pallindrome");
JButton button = new JButton("Calculate Pallindrome");
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
String str = JOptionPane.showInputDialog(null, "Enter some number : ", "", 1);
if(str.length() <= 4){
JOptionPane.showMessageDialog(null, "You have entered a " + str.length() + " digit number.", "Calculate Pallindrome", 1);
} else {
int num = Integer.parseInt(str);
int n = num;
int rev=0;
for (int i=0; i<=num; i++){
int r=num%10;
num=num/10;
rev=rev*10+r;
i=0;
}
if(n == rev){
JOptionPane.showMessageDialog(null, "Number is pallindrome", "Calculate Pallindrome", 1);
}
else{
JOptionPane.showMessageDialog(null, "Number is not pallindrome", "Calculate Pallindrome", 1);
}
}
}
});
JPanel panel = new JPanel();
panel.add(button);
frame.add(panel);
frame.setSize(400, 400);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}

// Code Ends

Thanks and Regards
RoseIndia Team









Related Tutorials/Questions & Answers:
examples
examples  Hi sir...... please send me the some of the examples... questions .   Hello Friend, Which type of connectivity examples do you... examples   my sqlADS_TO_REPLACE_2   Hello Friend, So you
PHP Examples
In this section of PHP examples, the new bees will learn the basic examples of most common used functions. These examples will help to the experts too... examples from several functions to sessions, class and objects. The examples
Advertisements
HTML5 examples
examples to learn in detail with the help of many examples. Please provide me the urls of HTML5 examples. Thanks   Hi, There are many new features... supported by major browsers. View examples at HTML5 Examples tutorial page
examples for overloading and overriding
examples for overloading and overriding  examples for overloading and overriding
Ajax examples
Ajax examples  Hi, I am Java programmer and I have done programming in Java. Now I am learning ajax from scratch. Tell me the good examples of Ajax. Thanks   Hi, Since you have already experience in development
Version of drools-examples>drools-examples dependency
List of Version of drools-examples>drools-examples dependency
ModuleNotFoundError: No module named 'examples'
ModuleNotFoundError: No module named 'examples'  Hi, My Python... 'examples' How to remove the ModuleNotFoundError: No module named 'examples... to install padas library. You can install examples python with following
need ENUM examples
need ENUM examples  i need enum sample examples
Examples on threads and mulithreading.....
Examples on threads and mulithreading.....  Is any good examples on threads and Mulithreading...   Hi Friend, Please visit the following link:ADS_TO_REPLACE_1 Thread Tutorial Thanks
Version of excalibur-component-examples>excalibur-component-examples dependency
List of Version of excalibur-component-examples>excalibur-component-examples dependency
unable to execute the examples
unable to execute the examples  unable to execute the examples given for struts,ejb,or spring tutorials.Please help I am a beginner
Criteria Query Examples in Hibernate
Criteria Query Examples in Hibernate  How to use the Criteria Query... Criteria Query in Hibernate with Examples code. Check the tutorial Criteria Query Examples. Check the Latest tutorials, articles and examples of Hibernate
Javascript Examples
JavaScript Examples     Clear cookie example Cookies can... In this part of JavaScript examples, we have created a simple example which shows the use... discussed in our previous examples the use of getAttribute() method. Visit the link
Java Tutorial with examples
Java Tutorial with examples  What is the good urls of java tutorial with examples on your website? Thanks   Hi, We have many java tutorial with examples codes. You can view all these at Java Example Codes
need ENUM examples
need ENUM examples  i need enum sample examples   Hi Friend, Visit HereADS_TO_REPLACE_1 Thanks
need ENUM examples
need ENUM examples  i need enum sample examples   Hi Friend, Visit HereADS_TO_REPLACE_1 Thanks
Maven Repository/Dependency: drools-examples | drools-examples
Maven Repository/Dependency of Group ID drools-examples and Artifact ID drools-examples. Latest version of drools-examples:drools-examples dependencies. # Version Release Date You can
Ajax website examples
Ajax website examples  Hi, Provide me the url's of ajax website examples. Thanks   Hi, Please see the nice Login and Registration page of Roseindia.net, which demonstrate the capabilities of Ajax frameworks. Thanks
Examples of optical disk
Examples of optical disk  What is the example of Optical disk? Please give me at least one example of it.   Digital versatile disks is a example of optical disk
Artifacts of drools-examples
List of Artifacts of drools-examples maven depenency
Artifacts of excalibur-component-examples
List of Artifacts of excalibur-component-examples maven depenency
examples of data science applications
examples of data science applications  Hi, I am beginner in Data...: examples of data science applications Try to provide me good examples or tutorials links so that I can learn the topic "examples of data science
data science examples in business
data science examples in business  Hi, I am beginner in Data Science... science examples in business Try to provide me good examples or tutorials links so that I can learn the topic "data science examples in business"
What is data science with examples?
What is data science with examples?  Hi, I am beginner in Data...: What is data science with examples? Try to provide me good examples or tutorials links so that I can learn the topic "What is data science with examples
HTML form examples
HTML form examples  Hi, How to create a simple data entry form in HTML and use JavaScript to validate the same. Can anyone share html form examples code? Thanks (adsbygoogle = window.adsbygoogle || []).push
Hibernate Associations and Joins Examples
Hibernate Associations and Joins Examples  How to write examples of Associations and Joins in Hibernate? Thanks   Hi, Please check the tutorial Associations and Joins. This tutorial explains you about Associations
HTML5 examples.
HTML5 quick examples. HTML5 Examples, Definition of <!DOCTYPE > in HTML5. HTML5 comment tag Example,, Definition of <!--  --> comment tag.... HTML5 input examples, Introduction and implementation of input tag. HTML5
What is outer join?Explain with examples.
What is outer join?Explain with examples.  What is outer join?Explain with examples
need ENUM examples
need ENUM examples  i need enum sample examples   Hi Friend, Try the following code:ADS_TO_REPLACE_1 public class EnumExample { public enum Languages{ C, Java, DOTNET, PERL } public static void main(String
Need Jar in the JPA examples
Need Jar in the JPA examples  JPA - tutorial is good, very easy to understand and simple. But to run the examples, the jar/helping files are needed. and how Hibernates are used in the JPA example? Thnaks Abhijit Das   
Struts Layout Examples - Struts
Struts Layout Examples  Hi, Iam trying to create tabbed pages using the struts layout tag. I see the tab names on the page but they cannot be clicked on. Im not able to find simple examples/explanation on it. Any help
SQL tutorial with examples
SQL tutorial with examples  Hi, I am looking for good SQL tutorial with examples code. Please give me good urls for SQL tutorial with example code which can be downloaded and easily used. Thanks   Read at SQL Example
PHP Tutorials Guide with Examples
PHP Tutorials Guide with Examples  Hi, I am a beginners in PHP. I have searching for php tutorial guides with examples. Can any one provide me resourceful link. Thanks,   Hi, Please read this PHP tutorial
Maven Dependency drools-examples >> 2.0-beta-15
You should include the dependency code given in this page to add Maven Dependency of drools-examples >> drools-examples version2.0-beta-15 in your project
interactive machine learning examples
interactive machine learning examples  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: interactive machine learning examples Try to provide me good examples
Dynamic html examples
Dynamic html examples  Hi, What is Dynamic HTML? Explain with dynamic html examples. Thanks (adsbygoogle = window.adsbygoogle || []).push({});   Hi, DHTML stands for Dynamic HTML and is uses the HTML
javascript event handling examples
javascript event handling examples  javascript event handling examples   var handleClick = function(e) { // Older IEs set the `event` globally. e = window.event || e; // Older IEs use `srcElement` instead
MySQL tutorial for beginners with examples
MySQL tutorial for beginners with examples  Hi, Where to learn MySQL from beginning? I learned Core Java and now going to learn MySQL database from beginning and searching for MySQL tutorial for beginners with examples. Give
ModuleNotFoundError: No module named 'em_examples'
ModuleNotFoundError: No module named 'em_examples'  Hi, My Python... 'em_examples' How to remove the ModuleNotFoundError: No module named 'em_examples' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'Kivy-examples'
ModuleNotFoundError: No module named 'Kivy-examples'  Hi, My... 'Kivy-examples' How to remove the ModuleNotFoundError: No module named 'Kivy-examples' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'moderngl-examples'
ModuleNotFoundError: No module named 'moderngl-examples'  Hi, My... named 'moderngl-examples' How to remove the ModuleNotFoundError: No module named 'moderngl-examples' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'ndex_examples'
ModuleNotFoundError: No module named 'ndex_examples'  Hi, My... 'ndex_examples' How to remove the ModuleNotFoundError: No module named 'ndex_examples' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'ndex_examples'
ModuleNotFoundError: No module named 'ndex_examples'  Hi, My... 'ndex_examples' How to remove the ModuleNotFoundError: No module named 'ndex_examples' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'ortools_examples'
ModuleNotFoundError: No module named 'ortools_examples'  Hi, My... named 'ortools_examples' How to remove the ModuleNotFoundError: No module named 'ortools_examples' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'pkg-examples'
ModuleNotFoundError: No module named 'pkg-examples'  Hi, My Python... 'pkg-examples' How to remove the ModuleNotFoundError: No module named 'pkg-examples' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'plotnine-examples'
ModuleNotFoundError: No module named 'plotnine-examples'  Hi, My... named 'plotnine-examples' How to remove the ModuleNotFoundError: No module named 'plotnine-examples' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'plotnine-examples'
ModuleNotFoundError: No module named 'plotnine-examples'  Hi, My... named 'plotnine-examples' How to remove the ModuleNotFoundError: No module named 'plotnine-examples' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'reactopya-examples'
ModuleNotFoundError: No module named 'reactopya-examples'  Hi, My... named 'reactopya-examples' How to remove the ModuleNotFoundError: No module named 'reactopya-examples' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'doubleone-examples'
ModuleNotFoundError: No module named 'doubleone-examples'  Hi, My... named 'doubleone-examples' How to remove the ModuleNotFoundError: No module named 'doubleone-examples' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'em_examples'
ModuleNotFoundError: No module named 'em_examples'  Hi, My Python... 'em_examples' How to remove the ModuleNotFoundError: No module named 'em_examples' error? Thanks   Hi, In your python environment

Ads