Insert title here

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>

Insert title here 三角形
<% String str1=""; for(int i = 1; i <10; i++ ) { for(int j = 1; j <%=str1 %>

菱形

<%
String str="";
for(int i=1;i<6;i++)
{
for(int j=6;j>i+1;j--)
{
str+="  ";
}
for(int l=1;l<=2*i-1;l++)
{
str+="0";
}
str+="
";
}
for(int i=1;i<5;i++)
{

for(int l=1;l<i+1;l++)
{
	str+="&nbsp;&nbsp;";
}
for(int j=8;j>2*i-1;j--)
{
	str+="0";
}
str+="<br>";

}
%>
<%=str %>

![](http://images2015.cnblogs.com/blog/1009605/201610/1009605-20161027204740156-1891772576.png)
原文地址:https://www.cnblogs.com/nicebaby/p/6005523.html