package sandbox;
import javax.swing.JOptionPane;
class Play {
public static void main(String[] args){
String money =JOptionPane.showInputDialog("How often do you get paid in a week?");
String edu =JOptionPane.showInputDialog("Are you furthering your education?");
String pt =JOptionPane.showInputDialog("How often do you workout in a week?");
int school;
if (edu == "Yes"){
school = 5;
} else {school = 0;}
int paid = Integer.parseInt(money);
int excercise = Integer.parseInt(pt);
int score = paid+excercise*3*school/2;
JOptionPane.showMessageDialog(null, "Your value is " + score, "Pass!", JOptionPane.PLAIN_MESSAGE);
}
}