Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.2K
Ranked #4K
~26.5K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for silverkid

package Java.util; import javax.swing.*; public class gradegui { public static void main(String[]arg) { JOptionPane.showMessageDialog(null, "welcome"); String store=JOptionPane.showInputDialog("enter score"); int score = Integer.parseInt(store); if (score>=70) { JOptionPane.showMessageDialog(null, "Your grade is A"); } else if(score>=60) { JOptionPane.showMessageDialog(null, "Your grade is B"); } else if (score>=50) JOptionPane.showMessageDialog(null, "Your grade is C"); } else …

Member Avatar for LaughingOtter
0
22K
Member Avatar for riahc3
Member Avatar for mbarandao
Member Avatar for CoolAtt

why don't use a list box? if you use list to give the user where they want to logon to and use if statement with redirect function to redirect to different web site address.

Member Avatar for diafol
0
257

The End.