
66. Write a program that reads a telephone number from a dialog box;
you should assume that the number is in this format: nnn-nnn-nnnn.
You should output this same telephone number but with spaces
instead of dashes, that is: nnn nnn nnnn.
67. Write a program that reads a sentence from a dialog box. The sen-
tence has been encrypted as follows: only the first five even-numbered
characters should be counted; all other characters should be dis-
carded. Decrypt the sentence and output the result. For example, if
the user inputs “Hiejlzl3ow”, your output should be Hello.
68. Write a program that reads a commercial website URL from a dialog
box; you should ...