Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.19 KB | None | 0 0
  1. var score : integer
  2. begin
  3.     if RadioButton1.Checked = true then
  4.         score := score + 1;
  5.     if RadioButton2.Checkad = true then
  6.         { и тд }
  7.     Label1.Caption := 'Score: " + FloatToStr(score);
  8. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement