63 lines
911 B
Go
63 lines
911 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"math"
|
||
|
)
|
||
|
|
||
|
type Circle struct {
|
||
|
Radius float64
|
||
|
}
|
||
|
|
||
|
func (c Circle) Area() float64 {
|
||
|
return math.Pi * math.Pow(c.Radius, 2)
|
||
|
}
|
||
|
|
||
|
func (c Circle) String() string {
|
||
|
return fmt.Sprintf("Circle {Radius: %.2f}", c.Radius)
|
||
|
}
|
||
|
|
||
|
type Square struct {
|
||
|
Width float64
|
||
|
Height float64
|
||
|
}
|
||
|
|
||
|
func (s Square) Area() float64 {
|
||
|
return s.Width * s.Height
|
||
|
}
|
||
|
|
||
|
func (s Square) String() string {
|
||
|
return fmt.Sprintf("Square {Width: %.2f, Height: %.2f}", s.Width, s.Height)
|
||
|
}
|
||
|
|
||
|
type Sizer interface {
|
||
|
Area() float64
|
||
|
}
|
||
|
|
||
|
type Shaper interface {
|
||
|
Sizer
|
||
|
fmt.Stringer
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
c := Circle{Radius: 10}
|
||
|
PrintArea(c)
|
||
|
|
||
|
s := Square{Height: 10, Width: 5}
|
||
|
PrintArea(s)
|
||
|
|
||
|
l := Less(c, s)
|
||
|
fmt.Printf("%v is the smallest\n", l)
|
||
|
}
|
||
|
|
||
|
func Less(s1, s2 Sizer) Sizer {
|
||
|
if s1.Area() < s2.Area() {
|
||
|
return s1
|
||
|
}
|
||
|
return s2
|
||
|
}
|
||
|
|
||
|
func PrintArea(s Shaper) {
|
||
|
fmt.Printf("area of %s is %.2f\n", s.String(), s.Area())
|
||
|
}
|