Value of an integer to be shown on LCD.

You can get second to the nearest 10th:

long then = millis();
//do something
long now = millis();
long duration = now - then;
duration /= 100; // duration is now in tenths of a second.
float secs = (float)duration / 10.0;