博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
测试例子
阅读量:6653 次
发布时间:2019-06-25

本文共 593 字,大约阅读时间需要 1 分钟。

#__author__=lx#__date__=2011-11-02def triangle( a, b, c ):        if a + b > c and a + c > b and b + c > a :                if a != b and a != c and b !=c :                        print "Ordinary triangle"                else :                        if a == b and a == c:                                print "Equilateral triangle"                        else:                                print "Isosceles triangle"        else:                print "Non-triangular"if __name__ == "__main__":        triangle( 3, 1, 2 )

  

转载于:https://www.cnblogs.com/lxgeek/archive/2011/11/02/2233027.html

你可能感兴趣的文章
初探AIR for“.NET研究” Android开发
查看>>
(转)matlab与C混合编程之中级篇
查看>>
pip安装错误,用镜像
查看>>
如何在open xml excel 中存储自定义xml数据?
查看>>
301和302跳转的区别
查看>>
【PM面试题】请设计一个老年人用的新闻App
查看>>
Linux安装 Mysql
查看>>
thickbox传递参数
查看>>
hdu 2082 找单词
查看>>
百度地图3.7.1获取当前的位置,并自定义自身位置的图标
查看>>
CuteEditor.Editor+a+a+c+a+a.a() System.RuntimeType.get_Assembly() 问题解决方法
查看>>
Int8 and UInt8 types different from Byte and SByte
查看>>
全面剖析Cocos2d游戏触摸机制 (下)
查看>>
Android 检测网络连接状态(转)
查看>>
Javascript的转义Escape
查看>>
C++结构体中的静态变量
查看>>
JSON.parse()和JSON.stringify()
查看>>
mysql 查排名
查看>>
中国最大的融资平台
查看>>
OO第二单元作业小结
查看>>