procedure TForm1.Button1Click(Sender: TObject);
var
i,bas,son,sonuc:integer;
begin
bas:=strtoint(edit1.Text );
son:=strtoint(edit2.Text );
sonuc:=0;
if checkbox1.Checked and checkbox2.Checked then
for i:=bas to son do
sonuc:=sonuc+i
else
if checkbox1.Checked then {bu kısım tek sayılar içindir}
begin
if not odd(bas) then bas:=bas+1;
i:=bas;
while i<=son do
begin
sonuc:=sonuc+i;
i:=i+2;
end;
end
else
if checkbox2.Checked then
begin
if odd(bas) then bas:=bas+1;
i:=bas;
while i<=son do
begin
sonuc:=sonuc+i;
i:=i+2;
end;
end;
label3.Caption := inttostr(sonuc);
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
close;
end;
end.
nazım demir
demirnazim@hotmail.com