Jump to content
Fórum Script Brasil
  • 0

Horas


bérne

Question

E ai galera do Delphi !

Tenho um problema no calculo das horas, preciso fazer um programa que faz o seguinte!

A pessoa trabalhou hs 3:50 sendo que de meia em meia hora ela recebe 40,00 reais,

o programa pede que eu entre com as horas trabalhadas e mostre na tela

quanto a pessoa recebeu.

alguém pode me ajudar, estou iniciando em programacao e não estou

conseguindo fazer este programa.

Ogrigado

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Ola bérne,

Dê uma olhada nesse código:

procedure TForm1.Button1Click(Sender: TObject);
var
  Hora : String;
  I : Integer;
  F : Real;
begin
  Hora := '03:50';
  I := (StrToInt(Copy(Hora,1,2))*60) + StrToInt(Copy(Hora,4,2));
  F := I / 30 * 40;
  Edit1.Text := FormatFloat('0.00',F);
end;

Qualquer coisa, posta ae, falou!!! wink.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...