使用jstl c:foreach标签动态输出一行两列的

运用jstl c:foreach标签动态输出一行两列的
<table border = "3" width = "300">
<tr>
<c:forEach items="${channels}" var="channel" varStatus="ind" >

<c:if test="${((ind.index + 1) % 3) eq 0}">
</tr>
     <tr>
</c:if>
           <td>

           </td>
<c:if test="${((ind.index + 1) % 3) ne 0}">
     </tr>
      <tr>
</c:if>

</c:forEach>

        </tr>
</table>

运用jstl动态输出一行两列的,上面写出来的,页面显示不对。
------解决方案--------------------
看来大家元旦都出去玩咯