C#练习题答案: 工作配对#1【难度:0级】--景越C#经典编程题库,1000道C#基础练习题等你来挑战

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/weixin_45444821/article/details/102750631

工作配对#1【难度:0级】:

答案1:

using StriveObjects;
using System;

public class Strive
{
  public static bool Match(Candidate c, Job j)
  {
    if (c.MinSalary == null || j.MaxSalary == null)
    {
      throw new Exception();
    }
    
    return (c.MinSalary * 0.9 <= j.MaxSalary);    
  }
}

答案2:

using StriveObjects;
using System;

public class Strive
{
  public static bool Match(Candidate c, Job j)
  {
    if (c.MinSalary == null || j.MaxSalary == null) {
      throw new Exception();
    }
    
    return c.MinSalary * 0.9 <= j.MaxSalary;
  }
}

答案3:

using StriveObjects;
using System;

public class Strive
{
  public static bool Match(Candidate c, Job j)
  {
    if(c.MinSalary==null||j.MaxSalary==null) throw new Exception();
    return c.MinSalary*0.9<=j.MaxSalary;
  }
}

答案4:

using StriveObjects;
using System;

public class Strive
{
    public static bool Match(Candidate c, Job j)
    {
        if (c.MinSalary == null || j.MaxSalary == null) throw new Exception();
        return (c.MinSalary * 0.9 <= j.MaxSalary);
    }
}

答案5:

using StriveObjects;
using System;

public class Strive
{
  public static bool Match(Candidate c, Job j)
  {
    if(c.Equals(null)) {
      throw new ArgumentException("A candidate is required");
    }
    if(j.Equals(null)) {
      throw new ArgumentException("A job is required");
    }
    if(c.MinSalary.Equals(null)) {
      throw new Exception("A minimum salary is required");
    }
    if(j.MaxSalary.Equals(null)) {
      throw new Exception("A maximum salary is required");
    }
    
    return (j.MaxSalary >= c.MinSalary * 0.9);
  }
}

答案6:

using StriveObjects;
using System;

public class Strive
{
  public static bool Match(Candidate c, Job j)
  {
    // Hack it!
    Console.WriteLine(c.MinSalary.GetType());
    Console.WriteLine(j.MaxSalary.GetType());
    
    return c.MinSalary * 0.9 <= j.MaxSalary;
  }
}

答案7:

    using StriveObjects;
    using System;

    public class Strive
    {
        public static bool Match(Candidate c, Job j)
        {
            if (c?.MinSalary is int &amp;&amp; j?.MaxSalary is int)
                return c.MinSalary*0.9 <= j.MaxSalary;
            else
                throw new FormatException(); 
        }
    }

答案8:

using StriveObjects;
using System;
public class Strive
{
    public static bool Match(Candidate c, Job j)
    {
        if (c == null || j == null || c.MinSalary == null || j.MaxSalary == null)
            throw new Exception();
        var min = c.MinSalary / 100.0 * 10.0;
        return c.MinSalary - min <= j.MaxSalary;
    }
}

答案9:

using StriveObjects;
using System;

public class Strive
{
  public static bool Match(Candidate c, Job j)
  {
    if (c.MinSalary is null) throw new ArgumentException();
    if (j.MaxSalary is null) throw new ArgumentException();
    
    return (c.MinSalary * 0.9) <= j.MaxSalary;
  }
}

答案10:

using StriveObjects;
using System;

public class Strive {
    public static bool Match( Candidate c, Job j ) {
        if ( c == null ) {
            throw new ArgumentNullException( );
        }
        if ( j == null ) {
            throw new ArgumentNullException( );
        }
        if ( c.MinSalary == null || c.MinSalary <= 0 ) {
            throw new ArgumentException( );
        }
        if ( j.MaxSalary == null || j.MaxSalary <= 0 ) {
            throw new ArgumentException( );
        }
        return c.MinSalary*0.9 <= j.MaxSalary;
    }
}

答案11:

using StriveObjects;
using System;

public class Strive
{
  public static bool Match(Candidate c, Job j) 
    => (c.MinSalary == null || j.MaxSalary == null) 
    ? throw new ArgumentException()
    : c.MinSalary * 0.9 <= j.MaxSalary;
}

答案12:

using StriveObjects;
using System;

public class Strive
{
  public static bool Match(Candidate candidate, Job job)
  {
    if (candidate.MinSalary == null) 
    {
      throw new ArgumentException($"{nameof(candidate)}.{nameof(candidate.MinSalary)}");
    }
    
    if (job.MaxSalary == null) 
    {
      throw new ArgumentException($"{nameof(job)}.{nameof(job.MaxSalary)}");
    }
    
    return job.MaxSalary >= 0.9 * candidate.MinSalary;
  }
}

答案13:

using StriveObjects;
using System;

public class Strive
{
  public static bool Match(Candidate c, Job j)
  {
    if (c.MinSalary == null || j.MaxSalary == null) { throw new ArgumentException(); }
    if ((c.MinSalary - (c.MinSalary*0.10)) <= j.MaxSalary) { return true; }
    return false;
  }
}



猜你喜欢

转载自blog.csdn.net/weixin_45444821/article/details/102750631
今日推荐