✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе на екран монітору представлена програма на мові Go:
package main
import (
"fmt"
)
func main() {
a := 5
b := 3.5
value := (b * a / 3) / (a / 3)
fmt.Printf("%f", value)
}