-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
37 lines (31 loc) · 1.62 KB
/
main.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
package main
import "fmt"
func main() {
const applePrice float64 = 5.99 // ціна одного яблука
const pearPrice float64 = 7 // ціна однієї груші
const ourBudget float64 = 23 // бюджет
appleCount := 9
pearCount := 8
// Перший пункт
fmt.Printf("1. Скільки грошей треба витратити, щоб купити %v яблук та %v груш?:\n", appleCount, pearCount)
appleAndPearPrice := applePrice*float64(appleCount) + pearPrice*float64(pearCount)
fmt.Printf("— Потрібно витратити %v гривень.\n\n", appleAndPearPrice)
// Другий пункт
fmt.Println("2. Скільки груш ми можемо купити?:")
pearsCanBuy := ourBudget / pearPrice
fmt.Printf("— Ми можемо купити %v груш.\n\n", int(pearsCanBuy))
// Третій пункт
fmt.Println("3. Скільки яблук ми можемо купити?:")
applesCanBuy := ourBudget / applePrice
fmt.Printf("— Ми можемо купити %v яблук.\n\n", int(applesCanBuy))
// Четвертий пункт
appleCount = 2
pearCount = 2
fmt.Printf("4. Чи ми можемо купити %v груші та %v яблука?:\n", pearCount, appleCount)
appleAndPearPrice = pearPrice*float64(pearCount) + applePrice*float64(appleCount)
if appleAndPearPrice <= ourBudget {
fmt.Printf("— Так! Ми можемо купити %v груші та %v яблука!", appleCount, pearCount)
} else {
fmt.Printf("— Ні. Нажаль, ми не можемо купити %v груші та %v яблука...", appleCount, pearCount)
}
}