Untitled
unknown
java
a year ago
799 B
6
Indexable
import javax.swing.JOptionPane;
public class ConvertStringToInteger {
public static void main(String[] args) {
// Declare variables
String stringHours;
int hours;
Integer integerHours;
final double PAY_RATE = 12.25;
// Prompt user for hours worked using a dialog box
stringHours = JOptionPane.showInputDialog(null, "How many hours did you work this week?");
// Convert string input to an integer
integerHours = Integer.valueOf(stringHours);
hours = integerHours;
// Display the total pay based on the hours worked
JOptionPane.showMessageDialog(null,
"You worked " + hours + " hours at $" + PAY_RATE + " per hour.\n" +
"That's $" + (hours * PAY_RATE));
}
}
Editor is loading...
Leave a Comment