0

我正在开发一个时间表生成器,每个团队都可以与其他团队进行比赛。我的数据库表和我需要的输出如下所示, 在此处输入图像描述

到目前为止我尝试过的是

 <%
    ResultSet rsteams = clmmodel_database.selectQuery("select count(ct.teamid) as teamcount, teamid,teamname from clm_team ct");
    while(rsteams.next()){
       int teamcount = rsteams.getInt("teamcount"); 
       int n = teamcount - 1;
       int numofmatches  = n*(n+1)/2; 
    %>
    <h1>Team Count = <%out.print(teamcount);%></h1>
    <h1>Number of Matches = <%out.print(numofmatches);%></h1>
    <table>
    <%for(int i =0;i<n;i++){%>
    <tr>
      //Here I need to display the matches row by row  
    </tr>
    <%}%>
    </table>

    <%}%>

它检索团队计数和要进行的比赛的数量。请帮助我。

4

1 回答 1

1

这是一个可能的解决方案:

<%for(int i =0; i< n - 1; i++){%>
  <%for(int j = i + 1; i<n; j++){%>
    <tr>
      //Here you can display team i and team j
    </tr>
  <%}%> 
<%}%>

我还建议您查看这些算法。

于 2013-11-01T09:36:54.907 回答