Go Arithmetic Operators Question 1

Introduction

Program that computes 32,132 time 42,452 and prints it to terminal:

package main /*  www.j  a  v a 2  s.  com*/

import "fmt" 

func main() { 
    fmt.Println(32132 * 42452) 
} 



PreviousNext

Related