Search Results

Showing results 1 to 17 of 17
Search took 0.01 seconds.
Search: Posts Made By: Jx_Man ; Forum: Pascal and Delphi and child forums
Forum: Pascal and Delphi Jun 24th, 2008
Replies: 2
Views: 833
Posted By Jx_Man
I would like to know if someone could send me a entire code for this purpose
(http://www.daniweb.com/forums/announcement58-2.html)
Forum: Pascal and Delphi Mar 25th, 2008
Replies: 5
Views: 1,876
Posted By Jx_Man
thanks for info friend :)
i will try it.
Forum: Pascal and Delphi Mar 11th, 2008
Replies: 5
Solved: QuickSort
Views: 3,845
Posted By Jx_Man
i m glad to hear that.
happy coding :)
Forum: Pascal and Delphi Mar 11th, 2008
Replies: 5
Solved: QuickSort
Views: 3,845
Posted By Jx_Man
try this following code :
{********************************************
* This Procedure to Sort element vektor *
* Procedure ATUR to organize an element position *
...
Forum: Pascal and Delphi Mar 11th, 2008
Replies: 5
Solved: QuickSort
Views: 3,845
Posted By Jx_Man
yeah. i will give u QuickSort procedure
Forum: Pascal and Delphi Mar 7th, 2008
Replies: 4
Solved: pop ??
Views: 857
Posted By Jx_Man
yes, you right.
Forum: Pascal and Delphi Mar 7th, 2008
Replies: 5
Views: 1,876
Posted By Jx_Man
you're welcome friend :)
Forum: Pascal and Delphi Mar 7th, 2008
Replies: 4
Solved: pop ??
Views: 857
Posted By Jx_Man
i was modified your code and add a some code :
i use your initial code...
function POP (var T : Tumpukan) : integer;

{*this function to check stack is empty or not*}
function Empty(var T :...
Forum: Pascal and Delphi Mar 7th, 2008
Replies: 5
Views: 1,876
Posted By Jx_Man
try this following code :
program Reverse_String;

uses crt;

const Elemen = 255; {* Max character *}

type S255 = string[Elemen];
Stack = record
Input :...
Forum: Pascal and Delphi Mar 7th, 2008
Replies: 4
Solved: Fibonaci
Views: 2,250
Posted By Jx_Man
you're welcome my friend :)
Forum: Pascal and Delphi Mar 6th, 2008
Replies: 4
Solved: Fibonaci
Views: 2,250
Posted By Jx_Man
see this code :
function FIBO(N : integer) : integer;

begin
if (N = 1) or (N = 2) then
FIBO := 1
else
FIBO(N) := FIBO(N - 1) + FIBO(N - 2)
end;
hope this helps...
Forum: Pascal and Delphi Mar 5th, 2008
Replies: 0
Code Snippet: Create and Read Matrix
Views: 6,202
Posted By Jx_Man
Simple code for matrix with pascal.

--Jery--
Forum: Pascal and Delphi Mar 5th, 2008
Replies: 3
Solved: Push Procedure
Views: 1,365
Posted By Jx_Man
you're welcome. its ok, everybody can make mistake. happy coding friend :)
all for the best.
Forum: Pascal and Delphi Mar 5th, 2008
Replies: 3
Solved: Push Procedure
Views: 1,365
Posted By Jx_Man
i think you forget to set full = false, just it.
add this code after else :
begin
Full := false;
T.Top := inc(T.Top);
T.Contain[T.Top] := X
end
ok hope this...
Forum: Pascal and Delphi Mar 5th, 2008
Replies: 6
Solved: Make Array
Views: 1,296
Posted By Jx_Man
sorry for the double post.
Forum: Pascal and Delphi Mar 5th, 2008
Replies: 6
Solved: Make Array
Views: 1,296
Posted By Jx_Man
see this example :
i write this code in pascal

5318

hope this helps..
Forum: Pascal and Delphi Mar 5th, 2008
Replies: 6
Solved: Make Array
Views: 1,296
Posted By Jx_Man
see this example :
i write this code in pascal

5318

hope this helps..
Showing results 1 to 17 of 17

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC