-
Notifications
You must be signed in to change notification settings - Fork 19
/
day-2.java
22 lines (18 loc) · 867 Bytes
/
day-2.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.util.*;
import java.math.*;
public class Arithmetic {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
double mealCost = scan.nextDouble(); // original meal price
int tipPercent = scan.nextInt(); // tip percentage
int taxPercent = scan.nextInt(); // tax percentage
scan.close();
// Write your calculation code here.
// cast the result of the rounding operation to an int and save it as totalCost
int totalCost = (int) Math.round(mealCost +
(mealCost * ((double)tipPercent / 100)) +
(mealCost * ((double)taxPercent / 100)));
// Print your result
System.out.println("The total meal cost is " + totalCost + " dollars.");
}
}