package main
import "fmt"
func main(){
//I want to solve this peoblen with fmt.Println() please help.
var a, b ,c float32
fmt.Println(" Enter 1st number:" )
fmt.Scan( &a)
fmt.Println(" Enter 2nd number:" )
fmt.Scan( &b)
c= a/b
fmt.Printf(" %.2f", c)
}
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/golang-nuts/00dac027-05d2-4ef8-a123-cf438981d849n%40googlegroups.com.