hello friends... ... begin IntTEmp:=IntA; IntA:=IntB; IntB:=IntTemp end; .... How i can do that without use IntTemp Variabels?!?!?! i wana do it only by TWO...
Hi, This is an old one... one of the first exercises you get when starting programming Pascal.. You might want to use this one: IntA := IntA xor IntB IntB :=...
... uses shellapi; command: shellexecute i dont remember exactly what's the syntax, if you cant find it out yourself, ask and i'll check it.... zs ===== E-mail...
Want to view Yahoo! Groups up to 51% faster and without the annoying banner ads? Go to http://myway.com and sign up, stating Yahoo! as your prefered group...
hello my all dear freinds: i need really your help.please help me.please help me. i'm a student of electrical engineering and as a part of my course i have to...
I have to create this problem for a class, but I don't know how to finish it. THE PROBLEM: Write a complete program that will find the smallest positive...
I have to say I have the best timing. A little while after posting this, I figured out how to do it. THE ANSWER: program blahblahblah (input, output); uses...
... A shorter way: var X,N:integer; begin write('Enter the number : ');readln(N); X:=0; repeat inc(X) until X*(X+1)/2>N; writeln('The sum of first ',X,'...
i have program in which i have to read from an infile and put the information into an array.i am having problems with this. if anyone could help me i would...
to whom it may concern: please help me. I want to stop having the enclosed emails sent to me. page not found. thank you very much, Robert Ryan ... Sorry, the...
If you sign up to receive all posts in this group by email, you'll still get the junk emails sent where people post porn URLs. In my group I moderate all new...
if you want log x e then use ln(x) if you want log b a then use ln(b)/ln(a) Zs ps: i hope yahoo wont screw up the lines :) ===== E-mail sent by _AnoN_ (a.k.a....
lets say you have a function where x^y=power(x,y) ... if y>=0 then s=power(x,y) else s=1/(power(x,-y)) Zs ===== E-mail sent by _AnoN_ (a.k.a. Anonymus,...
Not that it affects any of you in the least....simply changed it to restricted access, forcing new members to be approved. This will hopefully prevent those...
how can i make a pascal program run dos-commands... is it possible? if yes.. how can i make it run more than one command at a time?... thnx in advance ...
... use "exec" the easyest way to do so (a bit lame) is to create a BAT file, run it, and delete it... Zs ===== E-mail sent by _AnoN_ (a.k.a. Anonymus,...
... <HR> <html><body> <tt> > how can i make a pascal program run dos-commands... is<BR> > it possible? if yes.. how can i make it run more than<BR> >...
... <HR> <html><body> <tt> > thnx for your answer, but i know the *.bat way... i<BR> > wanted to make a program with pascal only.... i<BR> > couldnt...
Hello! I am trying to create a program which eleminates repeated elements from array A and creates array B where all recalling elements are removed....