码迷,mamicode.com
首页 > 其他好文 > 详细

使用 * 输出直角三角形

时间:2018-03-11 14:27:34      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:body   使用   info   inf   please   while   int   测试   bsp   

正方向

height = int(input("please input height: "))

tmp = 1
while tmp <= height:
    width = tmp
    while width > 0:
        print("*", end="")
        width -= 1
    print("")
    tmp += 1

测试结果:

技术分享图片

 

反方向:

height = int(input("please input height: "))

while height > 0:
    tmp = height
    while tmp > 0:
        print("*",end="")
        tmp -= 1
    print()
    height -= 1

测试结果:

技术分享图片

使用 * 输出直角三角形

标签:body   使用   info   inf   please   while   int   测试   bsp   

原文地址:https://www.cnblogs.com/klvchen/p/8543379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!