GoLang Solution For UVa Online Judge: 10341 - Solve It
GO Solution For UVa 10341 - Solve It. In this post we will see how we can solve this challenge in GoLang for UVa Online Judge.
Problem Description
Solve the equation:
p ∗ e−x + q ∗ sin(x) + r ∗ cos(x) + s ∗ tan(x) + t ∗ x2 + u = 0
where 0 ≤ x ≤ 1.
Input Input consists of multiple test cases and terminated by an EOF. Each test case consists of 6 integers in a single line: p, q, r, s, t and u (where 0 ≤ p, r ≤ 20 and −20 ≤ q, s, t ≤ 0). There
...You can find the full details of the problem Solve It at UVa Online Judge
Sample Input
0 0 0 0 -2 1 1 0 0 0 -1 2 1 -1 1 -1 -1 1
Sample Output
0.7071 No solution 0.7554
Solution: Please check the main.go snippet for the solution.
Solution originally posted at: Github by @codingsince1985
Comments
Leave a comment
You are not LoggedIn but you can comment as an anonymous user which requires manual approval. For better experience please Login.