Site icon Pathshala Nepal

Write a program to input and print the string in upper case and lowercase characters.

Q BAISC OS
Online Calculator

Write a program to input and print the string in upper case and lowercase characters.


1 Answer


CLS

INPUT"ENTER A STRING:";ST$

UC$=UCASE$(ST$)

LO$=LCASE$(ST$)

PRINT"IN UPPER CASE=";UC$

PRINT"IN LOWER CASE=";LO$

END

 

Topics from Computer
Related Questions