Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: Zufällige Zahl in Konsole
22. Feb 2012, 13:56
Repeat-Until?!
Delphi-Quellcode:
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
var
s : Integer;
x : Integer;
begin
randomize;
x := Random(100) + 1;
repeat
readln(s); // Lesen von Standardinput
if s<x then write('Falsch es war zu klein');
if s>x then write('Falsch es war zu gross');
writeln(s); // Schreiben nach Standardoutput
until (s = x);
writeln('Korrekte Lösung ist: ', x);
readln;
end.
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
Geändert von s.h.a.r.k (22. Feb 2012 um 14:00 Uhr)
|