一道面试题,语言不限,用例稍后补上,大家给出最好的解决方法
Write me a function that receives three integer inputs for the lengths of the sides of a triangle and returns one of four values to determine the triangle type (1=scalene, 2=isosceles, 3=equilateral, 4=error). Generate test cases for the function assuming another developer coded the function .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
没判断负数情况
恩,我写用例的时候测出来了。
两边之和大于第三边,已经包含了<=0的情况。不信你可以测
对的,是我没想清楚
哎,写错了一个最重要的条件,丢人丢大了!写用例的时候,自己给自己测出来了!