Issue with looping forwards

后端 未结 3 1615
灰色年华
灰色年华 2021-01-26 21:03

so I\'m having an issue with my loops, where the intention is to fill through the whole months before moving to the next line, like so

     January   2000                


        
3条回答
  •  花落未央
    2021-01-26 21:41

    You are missing one loop.

    Outer loop goes from leftmost month to righmost month (3 in total). But that will give you just one line.

    You have to wrap it with another loop that will go through all the lines.

提交回复
热议问题