S09 – 02 – Characters Problem – 1 Point

Write a program that calls the three subroutines below. The program should produce the following output:
The digits are: 0123456789
The characters are: abcdABCD@#!£
The alphanumerics are: 0123456789 abcdABCD@#!£

Subroutines
DisplayDigits()
This prints the output: “The digits are: 0123456789“

DisplayCharacters()
This prints the output: “The characters are: abcdABCD@#!£”

DisplayAlphaNumeric()
This prints the output: “The alphanumerics are: “ and then calls the DisplayDigits subroutine followed by the DisplayCharacters() subroutine.

Scroll to Top