<<< Put that character back!!! | Index | More things to try >>> |
Write a C++ program to
Read user input and skip all digits. Print the result on the screen.
Read user input line-by-line into a string object. Print each line pretending no digits were entered.
Read the content of HTML file. For example,
C:\CIS60> myprog.exe < webpage.html
(a) Print all text without HTML tags.
(b) Print all tag names. Indent nested tags:
html body p img
(c) Same as above, convert the output to UPPERCASE:
HTML BODY P IMG
(d) Same as above, plus count the total number of HTML tags and print the result.
<<< Put that character back!!! | Index | More things to try >>> |