forked from Bhavya1912/Hackerrank-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDay2:Operators.java
More file actions
24 lines (20 loc) · 837 Bytes
/
Day2:Operators.java
File metadata and controls
24 lines (20 loc) · 837 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
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
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.
Double cost = mealCost + (tipPercent*mealCost)/100 + (taxPercent*mealCost)/100;
// cast the result of the rounding operation to an int and save it as totalCost
int totalCost = (int) Math.round(cost);
// Print your result
System.out.println("The total meal cost is "+ totalCost+" dollars.");
}
}