<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
function sanjiao(){

for(var i=0;i<9;i++){
for(var j=0;j<9-i-1;j++){
document.write("&nbsp")
}
for(var k=0;k<2*i+1;k++){
document.write("*")
}
document.write("<br/>")
}
}
sanjiao();
</script>
</body>

</html>

相关文章:

  • 2022-12-23
  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-17
  • 2021-07-22
  • 2022-12-23
  • 2022-01-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案