Как Integer конвертировать в String(Free Pascal)? var x: integer; s: string; begin readln(x); s:=????; {<<----------как присвоить числовое значение к С??? } write(s); end.
Дополнен 12 лет назад
вот так реагирует на IntToStr p_26_1.pas(8,37) Error: Identifier not found "inttostr" p_26_1.pas(13,4) Fatal: There were 1 errors compiling module, stopping p_26_1.pas(0) Fatal: Compilation aborted
p_26_1.pas(8,37) Error: Identifier not found "inttostr" p_26_1.pas(13,4) Fatal: There were 1 errors compiling module, stopping p_26_1.pas(0) Fatal: Compilation aborted
var
x: integer;
s: string;
begin
readln(x);
s:=????; {<<----------как присвоить числовое значение к С??? }
write(s);
end.