View Single Post
  #5 (permalink)  
Old 10-08-2008, 08:53 AM
Eranga's Avatar
Eranga Eranga is online now
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 5,063
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Here is much better code segment. Write it just for fun. Try to learn something on that pal, but I'm not superior on Java.

Code:
import javax.swing.JOptionPane; public class study2 { public static void main(String[] args) { String temp1 = null , temp2 = null; int num1 = 0 , num2 = 0, max = 0; int ret = 0; inner: do { try { temp1 = JOptionPane.showInputDialog("The First Number is:"); num1 = Integer.parseInt(temp1); temp2 = JOptionPane.showInputDialog("The Second Number is:"); num2 = Integer.parseInt(temp2); } catch(NumberFormatException ex) { JOptionPane.showMessageDialog(null, "Invalid input"); continue inner; } if (num1 > num2) max = num1; else max = num2; JOptionPane.showMessageDialog(null,"The Maximum is " +max); ret = JOptionPane.showConfirmDialog(null, "Continue?", "More", JOptionPane.YES_NO_OPTION , JOptionPane.INFORMATION_MESSAGE); } while(ret == JOptionPane.YES_OPTION); } }
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Someone helped you?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.
Help:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Resources:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Web:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Tips:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote