python-12-1三角形 摘要:解题思路:按照公式计算就可以了。注意事项:参考代码:from math import sqrt def f(x1,y1,x2,y2,x3,y3): a = sqrt((x1-x2)…… 题解列表 2022年01月25日 0 点赞 0 评论 690 浏览 评分:9.9
蓝桥杯算法提高VIP-12-1三角形 (C++代码) AC代码 摘要:[有关pair的使用:](https://blog.csdn.net/sevenjoin/article/details/81937695 "有关pair的使用:") https://blog.cs…… 题解列表 2020年02月05日 0 点赞 0 评论 1191 浏览 评分:9.9
蓝桥杯算法提高VIP-12-1三角形 -题解(C语言代码)AC代码 三角形外心的求法A1=2*(x2-x1);B1=2*(y2-y1);C1=x2^2+y2^2-x1^2-y1^2;A2=2*(x3-x2);B2=2*(y3-y2);C2=x3^2+y3^2-x2^2-y2^2;即:A1*x+B1y=C1;A2*x+B2y=C2;x=((C1*B2)-(C2*B1)) 题解列表 2019年11月25日 0 点赞 0 评论 940 浏览 评分:9.9
蓝桥杯算法提高VIP-12-1三角形 -题解(C语言代码) ```c#include#includetypedefstruct{doublex;doubley;}_Power;typedefstruct{_Powera;_Powerb;_Powerc;}_Plan;doubleside(_Powerpower1, 题解列表 2019年07月09日 0 点赞 0 评论 1445 浏览 评分:9.9