HDU2080 夹角有多大2

Posted artimis-fightting

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU2080 夹角有多大2相关的知识,希望对你有一定的参考价值。

2019-05-17

15:00:09

加油加油,fightting !!!

这道题不知道acos()函数,acos()返回的是弧度,转化成度数要 / PI * 180

也没有想到通过向量 

但是想到了余弦定理

这道题与改革春分有一点点的联系,向量

#include <bits/stdc++.h>
#include <math.h>
using namespace std;
#define PI 3.1415926
int main()
{
    int t;
    int i,j;
    scanf("%d", &t);
    for(i = 0; i < t; i++)
    {
        double x1, y1, x2, y2;
        scanf ("%lf %lf %lf %lf", &x1, &y1, &x2, &y2);
        double a, b, c;
        a = x1 * x2 + y1 * y2;
        b = sqrt(x1 * x1 + y1 * y1) * sqrt(x2 * x2 + y2 * y2);
        c = acos(a / b) / PI * 180;
        printf("%.2lf\n", c);
    }
    return 0;
} 

 

以上是关于HDU2080 夹角有多大2的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2076 夹角有多大

HDU 2076 夹角有多大

HDU 2076 夹角有多大(题目已修改,注意读题)

HDU 2076 夹角有多大(题目已修改,注意读题)

hdoj:2080

夹角有多大