2018-05-05 23:19:22 +01:00

13 lines
209 B
C

#include <stdio.h>
int main()
{
int CurrentFloor = 0;
for(int Timestep = 0; Timestep < 15; Timestep++)
{
printf("I'm currently at floor %d\n", CurrentFloor);
// TODO: increment the current floor
}
}