procedure TForm1.Button1Click(Sender: TObject);
var
  D: Double;
begin
  Randomize;
  D := Random(35) + 1;
  Caption := FloatToStr(D);
end;