C#练习题答案: 一个直线的斜率【难度:1级】--景越C#经典编程题库,1000道C#基础练习题等你来挑战

这是一篇针对C#初学者的编程练习,重点讲解了如何计算直线的斜率。文章包含12种不同的解答方法,覆盖了基础的数学和C#编程知识。
摘要由CSDN通过智能技术生成

一个直线的斜率【难度:1级】:

答案1:

namespace Solution 
{
   
  using NUnit.Framework;
  using System;
  using System.Collections.Generic;
  
  public static class Solution
  {
   
    public static double? GetSlope(Point p1, Point p2)
    {
   
      if (p1.X == p2.X) {
    return null; }
      
      return (p1.Y - p2.Y) / (p1.X - p2.X);
    }
  }

  [TestFixture, Description("Tests")]
  public class GetSlopeTest
  {
   
    private static IEnumerable<TestCaseData> testCases
    {
   
      get
      {
   
        // Fixed Tests
        yield return new TestCaseData(new Point(1, 1), new Point(2, 2)).Returns(1).SetDescription("Should calculate the existing non-zero between 2 points");
        yield return new TestCaseData(new Point(-5,-5), new Point(9,9)).Returns(1).SetDescription("Should calculate the existing non-zero between 2 points");
        yield return new TestCaseData(new Point(1,8), new Point(2,9)).Returns(1).SetDescription("Should calculate the existing non-zero between 2 points");
        yield return new TestCaseData(new Point(8,3), new Point(-4,5)).Returns(-1/6.0).SetDescription("Should calculate the existing non-zero between 2 points");
        yield return new TestCaseData(new Point(5,3), new Point(8,9
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值