温馨提示×

# javascript打印三角形

以下是使用JavaScript打印三角形的方法:1、使用for循环语句打印直角三角形:```for (var i = 1; i <= 5; i++) {var str = '';...

0