-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02.go
57 lines (46 loc) · 1.17 KB
/
02.go
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package main
import (
"bufio"
"fmt"
"io"
"math"
"os"
"strconv"
"strings"
)
/*
* Complete the 'solve' function below.
*
* The function accepts following parameters:
* 1. DOUBLE meal_cost
* 2. INTEGER tip_percent
* 3. INTEGER tax_percent
*/
func solve(meal_cost float64, tip_percent int32, tax_percent int32) {
// Write your code here
fmt.Println(math.Round(meal_cost + meal_cost*float64(tip_percent)/100 + meal_cost*float64(tax_percent)/100))
}
func main() {
reader := bufio.NewReaderSize(os.Stdin, 16*1024*1024)
meal_cost, err := strconv.ParseFloat(strings.TrimSpace(readLine(reader)), 64)
checkError(err)
tip_percentTemp, err := strconv.ParseInt(strings.TrimSpace(readLine(reader)), 10, 64)
checkError(err)
tip_percent := int32(tip_percentTemp)
tax_percentTemp, err := strconv.ParseInt(strings.TrimSpace(readLine(reader)), 10, 64)
checkError(err)
tax_percent := int32(tax_percentTemp)
solve(meal_cost, tip_percent, tax_percent)
}
func readLine(reader *bufio.Reader) string {
str, _, err := reader.ReadLine()
if err == io.EOF {
return ""
}
return strings.TrimRight(string(str), "\r\n")
}
func checkError(err error) {
if err != nil {
panic(err)
}
}