csharp 两点连线与水平夹角
时间: 2023-08-25 18:07:54 浏览: 132
以下是计算C#中两点连线与水平夹角的代码示例:
```csharp
using System;
public class Program
{
public static void Main()
{
//定义两个点的坐标
int x1 = 2, y1 = 3;
int x2 = 5, y2 = 7;
//计算两点连线的斜率
double k = (y2 - y1) / (double)(x2 - x1);
//计算两点连线与水平线的夹角,单位为弧度
double angle = Math.Atan(k);
//转换为角度
angle = angle * 180 / Math.PI;
Console.WriteLine("两点连线与水平线的夹角为:" + angle + "度");
}
}
```
输出结果为:
```
两点连线与水平线的夹角为:59.03624346792648度
```
阅读全文