update,
This commit is contained in:
17
_resources/it114105/itp3914/Lab06/Ex7.java
Normal file
17
_resources/it114105/itp3914/Lab06/Ex7.java
Normal file
@@ -0,0 +1,17 @@
|
||||
import java.util.Scanner;
|
||||
public class Ex7 {
|
||||
|
||||
final static int[] HOURLY_RATE = {15, 35, 50};
|
||||
public static void main(String[] args) {
|
||||
|
||||
int type, hours;
|
||||
|
||||
Scanner input = new Scanner(System.in);
|
||||
System.out.print("Vehicle Type [1=private, 2=bus, 3=truck]? ");
|
||||
type = input.nextInt();
|
||||
System.out.print("Number of hours? ");
|
||||
hours = input.nextInt();
|
||||
System.out.println("Parking fee = " + HOURLY_RATE[type-1]*hours);
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user