How to find the arc tangent value of an angle in Go

1 Answer

0 votes
package main 
    
import ( 
    "fmt"
    "math"
) 
 
func main() { 
    result := math.Atan(25)
    
	fmt.Println(result)
} 
    
     
   
      
/*
run:
       
1.5308176396716064
   
*/

 



answered Jun 10, 2023 by avibootz
...