14 lines
221 B
Go
14 lines
221 B
Go
// ## Reading Input
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Print("Enter a number: ")
|
|
var input float64
|
|
fmt.Scanf("%f", &input)
|
|
output := input * 2
|
|
fmt.Println(input, "* 2 =", output)
|
|
}
|