Thema
:
Variablen Algoritmus
Einzelnen Beitrag anzeigen
Corpsman
Registriert seit: 8. Nov 2005
Ort: nähe Stuttgart
981 Beiträge
Delphi XE2 Professional
#
6
Re: Variablen Algoritmus
29. Sep 2008, 20:21
Die Funktion ist also
zusammenfalten
·
markieren
Delphi-Quellcode:
(*
die Zahlen entsprechen der Variablennummer :
1234
+5674
-----
56849
*)
type
Tfrage =
array
[1..9]
of
Integer;
Function
isValid(
const
a:Tfrage):Boolean;
var
s1,s2,s3:
string
;
begin
s1 := a[1]+a[2]+a[3]+a[4];
s2 := a[5]+a[6]+a[7]+a[4];
s3 := inttostr(strtoint(s1)+strtoint(s2));
if
length(s3) = 5
then
result := (s3[1] = a[5])
and
(s3[2] = a[6])
and
(s3[3] = a[8])
and
(s3[4] = a[4])
and
(s3[5] = a[9])
else
result := false;
end
;
Uwe
My Site
www.Corpsman.de
My marble madness clone
Balanced ( ca. 70,0 mb )
aktuell ver 2.01
Zitat
Corpsman
Öffentliches Profil ansehen
Besuche die Homepage von Corpsman!
Mehr Beiträge von Corpsman finden