How can i display the score and grade.......?

Thread Solved

Join Date: Oct 2007
Posts: 3
Reputation: cutekola is an unknown quantity at this point 
Solved Threads: 0
cutekola's Avatar
cutekola cutekola is offline Offline
Newbie Poster

How can i display the score and grade.......?

 
0
  #1
Nov 3rd, 2007
...kindly help me with this..........my code doesn't work....
...create a program that will ask questions and at the end of the session it will display the total number of correct answers and the equivalent grade....

...thanks.....

[code][inlinecode]
import javax.swing.JOptionPane;
public class questions {

public static void main(String[] args) {

int score=0;
int score1=0;
int score2=0;

String q1=JOptionPane.showInputDialog(null,"one plus one is? ");
if (q1=="two")
{
score1=score+1;
}
else if(q1!="two")
{
score1=score+0;
}
String q2=JOptionPane.showInputDialog(null,"four times four is? ");
if (q2=="sixteen")
{
score2=score1+1;
}
else if(q1!="sixteen")
{
score2=score1+0;
}
int tscore=score1+score2;
double grade=(tscore/2)* (100);
JOptionPane.showMessageDialog(null,"Your score is "+ tscore +" over 2!"
+ "\n" + "Your grade is " + grade);
System.exit(0);
}
}

[\inlinecode]
[\code]
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 4,188
Reputation: peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of 
Solved Threads: 482
Moderator
Featured Poster
peter_budo's Avatar
peter_budo peter_budo is offline Offline
Code tags enforcer

Re: How can i display the score and grade.......?

 
0
  #2
Nov 3rd, 2007
if you want to match string agains string you need to use String method equals() or equalsIgnoreCase(String anotherString).
Secondly to store score you need only one variable and not four plus you DO NOT need else if part of statement! String is either what is correct answer and score get increased or it is not and score remain as it was...
Learn to see in another's calamity the ills which you should avoid.
Publilius Syrus
(~100 BC)

LJC - London Java Community, Graduate & Undergraduate Software Development Community, JAVAWUG (Java Web User Group), The London Android Group
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC