首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
isosceles专题
UVA375 Inscribed Circles and Isosceles Triangles
思路:简单几何题.... #include <cstdio>#include <cmath>using namespace std;const double pi = atan(1.0) * 4;double b, h, l, th, r, k;int main() {int n;scanf("%d", &n);while (n--) {scanf("%lf%lf", &b, &
阅读更多...