Computer Science, asked by SaiRaghavender7027, 1 month ago

write java expresion for ab+cos(b)/√a

Answers

Answered by BrainlyProgrammer
10

Answer:

  • a*b+(Math.cos(b))/Math.sqrt(a)

Explanation:

  • cos() returns cosine value of an angle.
  • swet() returns square root of a number
Similar questions