<%@ page language="java" %> JSP Example Quadratic Equation: y = x^2 xy <% for (int i=0; i<10; i++) out.print("" + i + "" + (i*i) + ""); %>