Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.2K
~3K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for thusarix

[CODE] var input,output : text ; loc1,loc2,x : string ; begin writeln('enter location and file name of input file : ');readln(loc1); assign(input,loc1); reset(input); writeln('enter location and file name for output file : '); readln(loc2); assign(output,loc2); rewrite(output); while not eof(input) do begin readln(input,x); writeln(output,x); end; close(input); close(output); readln end. [/CODE]

Member Avatar for dhee.outsider
0
1K
Member Avatar for Holali

may be this will help .. [CODE] uses sysutils ; var a,i : integer ; b,r : text ; fname,g:string ; begin assign (b,'numoffiles.txt'); reset(b); read(b,a); for i := 1 to a do begin g := inttostr(i); fname := 'file_'+ g ; assign(r,fname); reset (r); {blah blah blah ;} close(r); …

Member Avatar for belthazor
0
784
Member Avatar for Mobix

not sure wither this applies to Delphi or not , but in pascal we usually use this command to print the float in normal notation write(y:x:z); where y represents the float x represents the number of digits for integer part of the float z represents the number of digits for …

Member Avatar for FlamingClaw
0
184
Member Avatar for dnk

please help me.. there anyone know how to reverse strings??? i really don't have idea for this.. please helps... a faster way : begin

Member Avatar for Jx_Man
0
217

The End.