PAT-乙-1051 1051 複數乘法 (15 分)

代碼 #include <stdio.h> #include <math.h> int main() { double r1, p1, r2, p2; scanf("%lf %lf %lf %lf", &r1, &p1, &r2, &p2); double ans1 = r1 * r2 * cos(p1) * cos(p2) - r1 * r2 * sin(p1) * sin(p2);
相關文章
相關標籤/搜索