PROMPT "type a string:"; string$ string2$ = " x " TotalLength = LEN(string$) OtherLength = LEN(string2$) PRINT "The total number of characters in your string is :" ; TotalLength PRINT "The total number of characters in the other string is :" ; OtherLength END
|