GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Pascal Programmers? (https://gfy.com/showthread.php?t=92868)

propromotions 12-09-2002 03:35 PM

Pascal Programmers?
 
I thought pascal was dead. I hope not.
I can not think of a way to print out every 3 possible 3 letter domain name into a pascal file. Do you know how to do this?

What I mean is:

aaa
aab
aac...
fgh
fgi
fgj
fgk

Thanks

theone 12-09-2002 03:58 PM

its 2003 not 86. stay off the crack.

L0stMind 12-09-2002 03:59 PM

I haven't even heard of pascal since bbs days....

LunaC 12-09-2002 04:06 PM

Damn. I took Pascal in high school and it was outdated then. Tested out of some college credit with it and haven't heard anything about it since...that was about 7 years ago.

Nydahl 12-09-2002 04:57 PM

Hi,
declare array of chars, 'a','b','c' and so on.

now define count of chars, in our country 32;
Edit1.Text is string of combined chars.
you must write procedures to store it into file etc.



i,j,k, count: integer;

begin
count := 32;
for i:=1 to count do
begin
for j:=1 to count do
begin
for k:=1 to count do
begin
Edit1.Text := IntToStr(i)+' '+IntToStr(j)+' '+IntToStr(k);
end;
end;
end;
end;

Shoplifter 12-09-2002 06:20 PM

Quote:

Originally posted by Nydahl
Hi,
declare array of chars, 'a','b','c' and so on.

now define count of chars, in our country 32;
Edit1.Text is string of combined chars.
you must write procedures to store it into file etc.


Increment through the Ascii code numbers for the characters
a-z using Nydahl's code.

You can use the ord to get the ascii, then increment it for the next letter then get the character from the ascii with chr.

hyper 12-09-2002 08:48 PM

i killed pascal and threw him in the river

theking 12-09-2002 09:10 PM

Quote:

Originally posted by hyper
i killed pascal and threw him in the river
That was Pascalii you threw in the river. :)

foe 12-09-2002 09:46 PM

aww the good old times

fnet 12-10-2002 10:33 PM

Quote:

Originally posted by theone
its 2003 not 86. stay off the crack.
Delphi is Pascal. Tons of stuff made with Delphi.

According to my clock it's 2002. Did you say crack?

maxcom 12-11-2002 12:24 AM

Quote:

Originally posted by fnet


Delphi is Pascal. Tons of stuff made with Delphi.

According to my clock it's 2002. Did you say crack?

:1orglaugh :1orglaugh

TheFLY 12-11-2002 12:57 AM

Quote:

Originally posted by fnet


Delphi is Pascal. Tons of stuff made with Delphi.

According to my clock it's 2002. Did you say crack?

Pascal :thumbsup

I actually purchased Borland Pascal 7.0 back in the day... so I could code my own BBS software... I came up w/ a cool ANSI algorithm which would be totally useless today... I remember taking my code to an interview at Galacticom... Damn those are some memories.


All times are GMT -7. The time now is 12:28 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123