Language
Pascal
Remove
Platform
Any
License
Any
Thank you very much. There are a lot of new for me in your solution. It will take time to investigate. Merry Christmas :)
hi to all.
i need a pascal program.
when i press arrows key on keyboard,cruiser go to left,right,up,down and writing a number between 1 and 4.1 for any right steps,2 up,3 left and 4 down.
like...
: : :
: : uses crt;
: : var m,n : integer;
: : begin
: : clrscr;
: : write('Enter a number to calculate it's times table: ');
: : readln(m);
: : for n := 1 to m do; { here's...
:
: uses crt;
: var m,n : integer;
: begin
: clrscr;
: write('Enter a number to calculate it's times table: ');
: readln(m);
: for n := 1 to m do; { here's your problem }
:...
: : Close, just remove the second ReadLn() because you are only to give
: : one number in the question and change it from "5" to "m" (see bold
: : below) as it will not always be "5" entered....
: Close, just remove the second ReadLn() because you are only to give
: one number in the question and change it from "5" to "m" (see bold
: below) as it will not always be "5" entered. Also, I...
Close, just remove the second ReadLn() because you are only to give one number in the question and change it from "5" to "m" (see bold below) as it will not always be "5" entered. Also, I have added...
4. write a program that reads a positive integer N and then prints an "N times table" containing values up to N * N.
for example,if the program reads the value 5, it should print
5*1 = 5
5*2...
: i want to add in some code into a program that i have.
:
: A user enters their username, and if it is correct it takes them to
: enter in their password, i want to add in some code so that if...
i want to add in some code into a program that i have.
A user enters their username, and if it is correct it takes them to enter in their password, i want to add in some code so that if they enter...
: what causes stack overflow error?
: i'm doing a dictionary system..every time i search a ord this error
: occors..please help..
:
A variety of things, most commonly a recursive call to a...
what causes stack overflow error?
i'm doing a dictionary system..every time i search a ord this error occors..please help..
: OK, I need to know the initial data + the algorithm you want to apply
my problem is I don't have any algorithm for this.
just I know that 1 repeat one time.2 repeat 2 time and ...
: how to arrange the calender into
:
: jan feb march
: april may june
: july august september
:...
: : : Hi every one
: : : I have a project about a calendar and I need a little help
: : : I want the program to ask me about the day ,the month and the year
: : : and display the monthes in 3...
: : Hey,
: :
: : I need to record the time taken for a program to run, so that I can
: : compare different code structures, but I can't find a function that
: : will do it. Does anyone know of...
: Hey,
:
: I need to record the time taken for a program to run, so that I can
: compare different code structures, but I can't find a function that
: will do it. Does anyone know of a...
Hey,
I need to record the time taken for a program to run, so that I can compare different code structures, but I can't find a function that will do it. Does anyone know of a function that would...
A plus B... again
Given two integers A and B, find their exact sum.
This time there are no limitations on A and B (of course, they will fit in memory).
Primes
Given an integer N
: : : : : Hi everybody!
: : : : :
: : : : : I want to make a program in pascal that calculates the number of
: : : : : days of a person. The information that is written from the keyboard
: : :...