Rot13 in Ti Basic

Published on 01 February 2025 (Updated: 01 February 2025)

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.

Current Solution

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.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.