Thema
:
Delphi
" Chat-Roboter " der antwortet
Einzelnen Beitrag anzeigen
implementation
Registriert seit: 5. Mai 2008
940 Beiträge
FreePascal / Lazarus
#
3
Re: " Chat-Roboter " der antwortet
21. Sep 2009, 18:18
hmmm...
zusammenfalten
·
markieren
Delphi-Quellcode:
type
TAntwortrecord =
record
Eingabe,Antwort:
string
;
end
;
type
TAntwortSpeicher =
Array
of
TAnswerrecord;
var
Aw: TAntwortspeicher;
[...]
function
GetAnswer(Eingabe:
string
):
string
;
var
i: byte;
begin
for
i := 0
to
Length(aw)
do
if
aw[i].Eingabe=Eingabe
then
Result := aw[i].Antwort;
end
;
Marvin
Zitat
implementation
Öffentliches Profil ansehen
Mehr Beiträge von implementation finden