Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: console application schließt einfach...
22. Jun 2004, 11:35
Einfach noch einen Prompt einfügen:
Code:
program Project2;
{$APPTYPE CONSOLE}
uses
SysUtils;
var a,b,flaeche: integer;
[color=#ff0000]S: String;[/color]
begin
readln(a);
readln(b);
flaeche:=a*b;
writeln(flaeche);
[color=#ff0000]ReadLn(S);[/color]
end.
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|