A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Rot13 in Ti Basic page! Here, you'll find the source code for this program as well as a description of how the program works.
Input "",Str1
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"->Str2
"nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM"->Str3
length(Str1)->L
"Usage: please provide a string to encrypt"->Str4
If L>0 Then
""->Str4
For(N,1,L)
sub(Str1,N,1)->Str5
inString(Str2,Str5)->K
If K>0 Then Str4+sub(Str3,K,1)->Str4
Else Str4+Str5->Str4
End
End
End
Disp Str4
Rot13 in Ti Basic was written by:
If you see anything you'd like to change or update, please consider contributing.
No 'How to Implement the Solution' section available. Please consider contributing.
No 'How to Run the Solution' section available. Please consider contributing.