icp/oer/courses/c-newcomers/sections/03-lift/02-moving-up/program.c

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
}
}