-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution.java
More file actions
28 lines (20 loc) · 855 Bytes
/
Solution.java
File metadata and controls
28 lines (20 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import java.util.Scanner;
public class Solution {
private static final Scanner scanner = new Scanner(System.in);
static void solve(double meal_cost, int tip_percent, int tax_percent) {
double tip = meal_cost * tip_percent / 100;
double tax = meal_cost * tax_percent / 100;
double totalCost = meal_cost + tip + tax;
System.out.println(Math.round(totalCost));
}
public static void main(String[] args) {
double meal_cost = scanner.nextDouble();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
int tip_percent = scanner.nextInt();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
int tax_percent = scanner.nextInt();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
solve(meal_cost, tip_percent, tax_percent);
scanner.close();
}
}