对于《编程之美》P292上关于三角形测试用例的问题,题目是这样的:

输入三角形的三条边长,判断是否能构成一个三角形(不考虑退化三角形,即面积为零的三角形),是什么样的三角形(直角、锐角、钝角、等边、等腰)。

函数声明为:byte GetTriangleType(int,int,int)。

  1. 如何用一个byte来表示各种输出情况?

  2. 如果你是一名测试工程师,应该如何写测试用例来完成功能测试呢?

我的解答

在学习二进制和按位“|”的用法之前:

1. 此时我不知道如何用一个byte表示各种输出情况。下面的程序我只是实现了功能,并没有按照给定的函数声明的格式完成……

UI:

Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Text.RegularExpressions; namespace TriangleTest
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Test_Click(object sender, EventArgs e)
{
//等腰,等边,直角,钝角,锐角。
Dictionary<String, int> result = new Dictionary<String, int>();
result.Add("等腰", );
result.Add("等边", );
result.Add("直角", );
result.Add("钝角", );
result.Add("锐角", );
var t1 = edge1.Text;
var t2 = edge2.Text;
var t3 = edge3.Text;
if (CheckInput(t1, t2, t3))
{
var e1 = double.Parse(edge1.Text);
var e2 = double.Parse(edge2.Text);
var e3 = double.Parse(edge3.Text);
double[] Numbers = new double[] { e1, e2, e3 };
double powSum = Math.Pow(e1, ) + Math.Pow(e2, ) + Math.Pow(e3, );
double max = Numbers.Max();
if (CheckTriangle(e1, e2, e3))
{
//三角形。
result["等腰"] = CheckEquicrural(e1, e2, e3) ? : ;
result["等边"] = CheckEquilateral(e1, e2, e3) ? : ;
result["直角"] = CheckRightAngle(powSum, max) ? : ;
result["钝角"] = CheckObtuseAngle(powSum, max) ? : ;
result["锐角"] = CheckAcuteAngle(powSum, max) ? : ;
string resultTip = result["等腰"] == ? "等腰" : "";
resultTip += result["等边"] == ? "等边" : "";
resultTip += result["直角"] == ? "直角" : "";
resultTip += result["钝角"] == ? "钝角" : "";
resultTip += result["锐角"] == ? "锐角" : "";
resultTip += "三角形";
MessageBox.Show(resultTip);
}
else
{
//不是三角形。
MessageBox.Show("您输入的三边构不成三角形!");
}
}
else
{
//输入非法。
MessageBox.Show("您输入的信息有问题!");
}
} private bool CheckAcuteAngle(double powSum, double max)
{
return (Math.Pow(max, ) < powSum - Math.Pow(max, )) ? true : false;
} private bool CheckObtuseAngle(double powSum, double max)
{
return (Math.Pow(max, ) > powSum - Math.Pow(max, )) ? true : false;
} private bool CheckRightAngle(double powSum, double max)
{
return (Math.Pow(max, ) == powSum - Math.Pow(max, )) ? true : false;
} private bool CheckEquicrural(double e1, double e2, double e3)
{
return (e1 == e2 && e2 == e3) ? true : false;
} private bool CheckEquilateral(double e1, double e2, double e3)
{
return (e1 == e2 || e2 == e3 || e3 == e1) ? true : false;
} private bool CheckTriangle(double edge1, double edge2, double edge3)
{
double[] edges = new double[] { edge1, edge2, edge3 };
double sum = edges[] + edges[] + edges[];
int succFlag = ;
for (int i = ; i < edges.Count(); i++)
{
if (edges[i] < sum - edges[i])
{
succFlag++;
}
}
if (succFlag == )
{
return true;
}
else
{
return false;
}
} private bool CheckInput(string edge1, string edge2, string edge3)
{
bool result = false;
Regex reg = new Regex("^[0-9]*$");
if (reg.IsMatch(edge1) && reg.IsMatch(edge2) && reg.IsMatch(edge3))
{
if (Int32.Parse(edge1) > && Int32.Parse(edge2) > && Int32.Parse(edge3) > )
{
result = true;
}
}
return result;
}
}
}

Run:

2. 对于功能测试而言:

  1)值的类型测试:注意输入值的种类(整形,浮点型,字符串类型等),检查对于非法值类型是否有控制逻辑;

  2)值的边界测试:注意输入值的范围(只能为非负数),检查超出范围时是否有控制逻辑;

  3)以结果为导向的测试:分别对非三角形,三角形中的等腰、等边、直角、钝角、锐角做出几组符合要求的测试数据,检查Test结果是否正确;

  4)值的长度测试:根据需求检查输入值达到最大值长度时,是否能够正常Test。

在学习二进制和按位“|”的用法之后:

经过学习二进制和按位或“|”的用法,我将程序做了修改,终于满足了要求(但是由于三边都是int类型是无法表示直角等腰三角形的,所以我把int改成了double类型):

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Text.RegularExpressions; namespace TriangleTest
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Test_Click(object sender, EventArgs e)
{
var t1 = edge1.Text;
var t2 = edge2.Text;
var t3 = edge3.Text;
if (CheckInput(t1, t2, t3))
{
var e1 = double.Parse(edge1.Text);
var e2 = double.Parse(edge2.Text);
var e3 = double.Parse(edge3.Text);
byte result = GetTriangleType(e1, e2, e3);
if (result == )
{
MessageBox.Show("您输入的三边构不成三角形!");
}
else
{
//十进制转换为二进制。
string tip = Convert.ToString(result, ) + "\n锐角 钝角 直角 等边 等腰(1代表是)";
MessageBox.Show(tip);
/*
1 1 1 1 1
锐角 钝角 直角 等边 等腰
*/
}
}
else
{
//输入非法。
MessageBox.Show("您输入的信息有问题!");
}
}
byte GetTriangleType(double e1, double e2, double e3)
{
//等腰00001=1,等边00010=2,直角00100=4,钝角01000=8,锐角10000=16。
byte result = ;
double[] Numbers = new double[] { e1, e2, e3 };
double powSum = Math.Pow(e1, ) + Math.Pow(e2, ) + Math.Pow(e3, );
double max = Numbers.Max();
if (CheckTriangle(e1, e2, e3))
{
//三角形。
if (CheckEquicrural(e1, e2, e3))
{
result |= ;//等腰。
}
if (CheckEquilateral(e1, e2, e3))
{
result |= ;//等边。
}
if (CheckRightAngle(powSum, max))
{
result |= ;//直角。
}
if (CheckObtuseAngle(powSum, max))
{
result |= ;//钝角。
}
if (CheckAcuteAngle(powSum, max))
{
result |= ;//锐角。
}
return result;
}
else
{
//不是三角形。
return ;
}
}
private bool CheckAcuteAngle(double powSum, double max)
{
return (Math.Pow(max, ) < powSum - Math.Pow(max, )) ? true : false;
} private bool CheckObtuseAngle(double powSum, double max)
{
return (Math.Pow(max, ) > powSum - Math.Pow(max, )) ? true : false;
} private bool CheckRightAngle(double powSum, double max)
{
return (Math.Pow(max, ) == powSum - Math.Pow(max, )) ? true : false;
} private bool CheckEquicrural(double e1, double e2, double e3)
{
return (e1 == e2 && e2 == e3) ? true : false;
} private bool CheckEquilateral(double e1, double e2, double e3)
{
return (e1 == e2 || e2 == e3 || e3 == e1) ? true : false;
} private bool CheckTriangle(double edge1, double edge2, double edge3)
{
double[] edges = new double[] { edge1, edge2, edge3 };
double sum = edges[] + edges[] + edges[];
int succFlag = ;
for (int i = ; i < edges.Count(); i++)
{
if (edges[i] < sum - edges[i])
{
succFlag++;
}
}
if (succFlag == )
{
return true;
}
else
{
return false;
}
} private bool CheckInput(string edge1, string edge2, string edge3)
{
bool result = false;
Regex reg = new Regex("^[0-9]*$");
if (reg.IsMatch(edge1) && reg.IsMatch(edge2) && reg.IsMatch(edge3))
{
if (Int32.Parse(edge1) > && Int32.Parse(edge2) > && Int32.Parse(edge3) > )
{
result = true;
}
}
return result;
}
}
}

C#中通过三边长判断三角形类型(三角形测试用例)的更多相关文章

  1. Python中请使用isinstance()判断变量类型

    一.isinstance() 在Python中可以使用type()与isinstance()这两个函数判断对象类型,而isinstance()函数的使用上比type更加方便. # coding=utf ...

  2. strstr() strpos() 获取db报错,判断报错中是否包含字符串,判断错误类型

    model中直接获取添加公司的错误.(公司名称不能重复) $enterprise_id = $this->add($enterprisedata ); $err = $this->getD ...

  3. shell中if的可判断的类型

    -d :判断制定的是否为目录-z:判断制定的变量是否存在值-f:判断制定的是否为文件-L:判断制定的是否为符号链接-r:判断制定的是否可读-w:判断制定的是否可写-x:判断存在的对象是否可以执行!:测 ...

  4. 判断String类型字符串是否为空的方法

    在项目中经常遇到要判断String类型的字段是否为空操作 我们可以用Apache提供的StringUtils这个工具类,不用自己去判断,也不用自己封装判断空的方法 它有两个版本,一个是org.apac ...

  5. js 判断浏览器类型

    前言 工作中需要用到判断浏览器类型,网上找到的内容不怎么全,故在此进行一下总结. 一.不同浏览器及版本下User-Agent信息 待续.....欢迎补充 二.根据User-Agent信息进行判断 参考 ...

  6. Java开发中经典的小实例-(输入三个数字判断三角形类型)

    import java.util.Scanner;public class threeTest {    public static void main(String[] args) {       ...

  7. 大一C语言学习笔记(11)---编程篇--写一个程序,可以获取从键盘上输入的的三个数,并能够判断是否可以以这三个数字作为边长来构成一个三角形,如果可以的话,输出此三角形的周长及面积,要求 0 bug;

    考核内容: 写一个程序,可以获取从键盘上输入的的三个数,并能够判断是否可以以这三个数字作为边长来构成一个三角形,如果可以的话,输出此三角形的周长及面积: 答案: #include<stdio.h ...

  8. 【C语言】判断三角形类型

    根据输入的三角形的三边判断三角形的类型,并输出其面积和类型. #include<stdio.h> #include<stdlib.h> #include<math.h&g ...

  9. PHP判断变量类型和类型转换的三种方式

    前言: PHP 在变量定义中不需要(不支持)明确的类型定义.变量类型是根据使用该变量的上下文所决定的.所以,在面对页码跳转.数值计算等严格的格式需求时,就要对变量进行类型转换. 举例如下: $foo ...

随机推荐

  1. table创建固定表头

    布局:两个div,上部内容将表头复制,高度固定,下部div内部将table设置为margin:-**px; 隐藏掉表头,下部div设置overflow,即可. 代码:

  2. HDU 2366 Space(二分计数)

    Problem Description During a programming contest, teams cannot sit close to each other, because then ...

  3. 反射认识_02_反射成员变量Field

    包01: package ReflectionConstructor; public class ReflectionFieldPoint { private int x; public int y; ...

  4. App架构设计学习(一)---- 接口的设计

    一.哎,最近换了家工作,结果工作很出的我意外,没有干熟悉的根据需求写代码,反而让我一个小菜鸟去重构一下App的架构(他们公司的app,已经上线了1.0版本了),没办法,只有硬着头皮去先学习学习,再总结 ...

  5. scala2.10.x case classes cannot have more than 22 parameters

    问题 这个错误出现在case class参数超出22个的时候. case classes cannot have more than 22 parameters 在scala 2.11.x版本以下时c ...

  6. springmvc处理ajax请求

    1.controller将数据封装成json格式返回页面 @RequestMapping("/dataList") public void datalist(CsoftCunsto ...

  7. AMBA interconnector PL301(一)

    HPM(High-Performance Matrix)是一个自生成的AMBA3 bus subsystem. 由一个AXI bus matrix,Frequency Conversion Compo ...

  8. ubuntu SVN环境配置(转)

    一.SVN安装1.安装包$ sudo apt-get install subversion 2.添加svn管理用户及subversion组$ sudo adduser svnuser$ sudo ad ...

  9. cf-282e

    “字典树”的变形,任意两数异或最大值,处理字典树的时候可以用递归,也可以用循环,下面有两个版本. C - Sausage Maximization Time Limit:2000MS Memory L ...

  10. 【海岛帝国系列赛】No.4 海岛帝国:LYF的太空运输站

    50212228海岛帝国:LYF的太空运输站 [试题描述] 最近,“购物券”WHT在“药师傅”帝国资源大会上提出了“SSTS”太空运输站计划.由于恐怖分子前些日子刚猖狂完,炸毁高楼无数,YSF不得不执 ...