我正在编写一个生命游戏代码,该模拟将运行1000次步骤。该程序似乎运行良好,但我想添加另一个功能,其中时间步长将打印在电路板的当前状态之上。例如,在timestep = 0
上,初始板将打印出来并在timestep = 1000
上打印出板的最终状态。
我已经考虑过以下代码来打印时间步(注意:我仍然是学习 C 编程的初学者):
int timestep = 1000;
printf("Timestep: ");
for (int init_time = 0; init_time < timestep; init_time++)
{
printf("%d", init_time);
}
我不确定此代码是否会以这种方式打印出来:Timestep Sample Image (Click Here)
我认为需要清除一行以打印出时间步,但我不知道该怎么做,或者这是否是解决该问题的正确方法。我将非常感谢您提供的任何帮助。