LCD

Let's not use the library clear. It clears the whole screen and when used improperly it flickers the screen. All you need it to do this:

if (number<10) lcd.print("  "); // two spaces
if ((number>=10)&&(number<100)) lcd.print(" ");// one space
lcd.print(number);
lcd.print("%");