Delphi Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreDelphi Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old June 20th, 2012, 03:14 PM
X-O-R X-O-R is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2012
Posts: 1 X-O-R User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 26 m 45 sec
Reputation Power: 0
Exclamation Help on understanding this code

hi everyone i'm beginner in delphi language and i need to understand this code :
repeat
s4:= UpperCase(Edit1.Text[4]);
X:=0;
for i := 1 to 3 do
s4:= s4 + chr(Random(25)+$41);
for i := 1 to Length(s4) do
x:= x + Ord(s4[i]);
x:= x mod $28;
until x = $14;

so please any one explaine for me this code

Reply With Quote
  #2  
Old June 21st, 2012, 07:23 AM
Marlon B Marlon B is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2012
Posts: 11 Marlon B User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 43 m 13 sec
Reputation Power: 0
Quote:
Originally Posted by X-O-R
hi everyone i'm beginner in delphi language and i need to understand this code :
repeat
s4:= UpperCase(Edit1.Text[4]);
X:=0;
for i := 1 to 3 do
s4:= s4 + chr(Random(25)+$41);
for i := 1 to Length(s4) do
x:= x + Ord(s4[i]);
x:= x mod $28;
until x = $14;

so please any one explaine for me this code
Hello,

First of all make sure you know what every part of the code means, never try to read chunks of code in it's entirety. For more info, here's a handy site I regularly consult - Delphibasics .

Having said that, here's basically what your code does:

Code:
repeat
 (code)
until  x = $14;
You've got a variable x (I'm assuming integer, you didn't specify), which has a certain value. The piece marked (code) will be run at least once, after which x will be checked. If it's equal to $14 (which is the hexadecimal notation for 20), you've reached the end of the loop. If not, the part in between repeat and until will be ran again, until X equals 20.

Code:
s4:= UpperCase(Edit1.Text[4]);
X:=0;
s4 is a String, Edit1 is a component (probably of type TEdit) on a form. Here, the 4th character of the string currently in your editbox (Edit1) will be converted to uppercase, and stored in String s4; if you typed in the word "example" without quotes in the editbox, you'd end up with "M" (again, without quotes) in s4.
The integer value X will be set to zero.

Code:
for i := 1 to 3 do
  s4:= s4 + chr(Random(25)+$41);
This loop will add three letters after the character already in s4 (the for loop runs with i = 1, i = 2, i = 3).
Random(25) gives you a value ranging from 0 to 25, after which $41 (or 65 in decimal) is added. Remember that 65 is Ascii for capital letter A.
So far you have an integer, so Chr(x) converts an integer to a character, after which you add it to the already existing String s4.
By now s4 should read something like MTFE (random).

Code:
for i := 1 to Length(s4) do
  x:= x + Ord(s4[i]);
s4 has a Length of 4 characters by now, and x was 0 until now. So for each letter in the String s4, add the ordinal value of said latter to x.
With the example above, x will increase with the ordinal value of M, T, F and E (77, 84, 70 and 69 respectively).

Code:
x := x mod $28;
Mod performs an integer division, and returns the remainder. So here you divide x by $28 (decimal 40), and assign the remainder of the division back to x.

As mentioned before, this will repeat until x becomes 20.

Hope this helps - as far as the purpose of this particular code goes, I'll leave that one up to you.

Best regards,

Marlon

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreDelphi Programming > Help on understanding this code

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap