Где ошибка? program asd; var a,b,c,k,n: real; const i=10; j=10; begin n: =10i + 15j; write(n,''); a: = 0; write(a,' '); b: = 1; write(b,' '); for k: =3 to n do begin write(a+b,' '); c: = b; b: = a + b; a: = c; end; readln end. сама ошибка: free pascal compiler version 2.6.4+dfsg-6 [2015/05/31] for i386 copyright (c) 1993-2014 by florian klaempfl and others target os: linux for i386 compiling prog.pas prog.pas(7,7) fatal: syntax error, "; " expected but "identifier i" found fatal: compilation aborted error: /usr/bin/ppc386 returned an error exitcode (normal if you did not specify a source file to be compiled)
Программа без синтаксических ошибок:
program asd;
var
a,b,c,n, k: longint;
const i=10; j=10;
begin
n:=10*i + 15*j;
write(n,'');
a:= 0;
write(a,' ');
b:= 1;
write(b,' ');
for k:=3 to n do begin
write(a+b,' ');
c:= b;
b:= a + b;
a:= c;
end;
readln
end.
Так как условия задачи нет, то делает ли программа то, что нужно - неизвестно.