码迷,mamicode.com
首页 > 其他好文 > 详细

HDU2080 夹角有多大2

时间:2019-05-17 15:15:59      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:bit   i++   color   names   nbsp   efi   return   class   for   

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

标签:bit   i++   color   names   nbsp   efi   return   class   for   

原文地址:https://www.cnblogs.com/Artimis-fightting/p/10881418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!