Exactly what I was looking for for the it exams... Thanks
@anesushumba42603 жыл бұрын
Can you use an array instead of an string variable in this case
@mckylenaidoo97213 жыл бұрын
Can you please do a video encrypting a text using the ceasar cipher
@MuhammadYusuf-eq8xi3 жыл бұрын
sir do you know where i can get the codes for the data files?
@taytayy20053 жыл бұрын
hi I'm having a problem for some reason my program changed yet I saved it right and I tried doing save as but it showing 'Encrypt_up'
@Moon_shadow7864 жыл бұрын
Mr Long how do we decrypt the message
@MrLongITandCAT4 жыл бұрын
Just do the exact some thing in reverse. Instead of referring to sAlphabet, refer to sEncrypt and vice versa.
@Moon_shadow7864 жыл бұрын
@@MrLongITandCAT thanks
@mckylenaidoo97213 жыл бұрын
@@MrLongITandCAT i still dont understand...could you maybe do it please.
@HammadAli-uh3sd3 жыл бұрын
@mr long decrypt doesn’t work 😿
@lilylemach1033 жыл бұрын
how can i use an array in encryption and decryption
@MrLongITandCAT3 жыл бұрын
general example is you could use an array to generate a random key: alpha := 'abcedfghijklmnopqrstuvwxyz' ; for i := 1 to 26 do //for each letter in alphabet begin iNum := randomrange( 1, length(alpha) + 1 ) ; //generate a random number that will corrsepond to that position in alpha string arrKey[ i ] := alpha[ iNum ] ; //allocate each position in array to a random value in alpha string Delete( alpha, iNum, 1) ; //remove letter you just randomly selected so you dont use it again in the key end ;
@lilylemach1033 жыл бұрын
@@MrLongITandCAT thank youu we have a a practical and our IT teacher knows nothing I wish you could teach our school we only have 5 people in our class
@MrLongITandCAT3 жыл бұрын
@@lilylemach103 You can do it! Use whatever videos we have to help you and your class.
@karib_3 жыл бұрын
@@MrLongITandCAT morning sir, then how would you decrypt it?, (if we used the array)
@orylangovender69904 жыл бұрын
how would you make it use a edit box and encrypt the message in the edit box
@MrLongITandCAT4 жыл бұрын
Put the value from the edit box into a variable and then use the variable like in the video: sTemp := edtSentence.Text ;
@johannswart98594 жыл бұрын
Mr Long in the if statement could you not just say continue and leave the else statement