已知三个double 类型的变量a、b和theta 分别表⽰⼀个三角形的两条边长及⼆者的夹角(弧度),则三 角形的周长可以通过表达式sqrt(a * a + b * b - 2 * a * b * cos(theta)) 求得。
正确
错误