You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
181 B
Plaintext

program pinumber;
const
pi = 3.14159;{definiert als EXTENDED}
var
piSecond : extended;
begin
WriteLn('Pi ist definiert als ', pi);
piSecond := pi;
WriteLn(piSecond);
end.