-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDay02.java
30 lines (22 loc) · 945 Bytes
/
Day02.java
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
29
30
package HackerRank.CodingDays30;
import java.util.Scanner;
public class Day02 {
// Complete the solve function below.
static void solve(double meal_cost, int tip_percent, int tax_percent) {
double tip = meal_cost * ((double) tip_percent/100);
double tax = meal_cost * ((double) tax_percent/100);
double totalCost = meal_cost + tip + tax;
System.out.println(Math.round(totalCost));
}
private static final Scanner scanner = new Scanner(System.in);
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();
}
}