You can slo use div and mod
program divide_up;
uses crt;
var
main, counter : integer;
separate : array[1..20] of integer;
procedure devide(i : integer);
var count : integer;
begin
for count := 1 to 20 do begin
separate[count] := i mod 10; {takes the last integer}
i := i div 10; {takes...
Procedures are extremely useful in Pascal programming, in any language.
A procedure is a sub section code that can be called by the main part of the program. This is useful as you can then use it again and again.It I like a small program all on its own, though the procedure name can not be...
Couldnt you creat a boot cd, and also put the image of your hardrives onto sevaral cd's, then set up the BIOS to boot from a cd, start up the computer with the boot cd?
Joey
you could also try using the line
window(x, y);
i think that that is the correct command, were x and y are integers, thefore altering the screen size, that may work, im not certain though
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.