The Society for the Prevention of Profanity on the Internet has observed a growing number of chat lines on the World-Wide Web. A chat line allows a Web user to type lines of text which are transmitted to all other users. The Society is concerned about the number of four-letter words being transmitted by these chat lines and has proposed the mandatory use of software to remove all four-letter words from every transmission. Your job is to write the software to do this removal.
Input Specification
The input to your program consists of an integer, , on a line by itself, followed by lines of text. Each line of text contains words separated by spaces. Each word consists of letters of the alphabet and exactly one space separates adjacent words. Lines do not exceed 80 characters in length.
Output Specification
The output from your program should consist of the lines of text, with each four-letter word replaced by four asterisks.
Sample Input
2
The quick brown fox jumps over the lazy dog
Now is the time for all good people to come to the aid of the party
Sample Output
The quick brown fox jumps **** the **** dog
Now is the **** for all **** people to **** to the aid of the party
Comments
Life is Roblox Like literally I know this is a made-up concept but like a really bad one(no hate to the creator) But I guess there isn't any other way to do this...
Can anyone tell me why this code does not fulfill all requirements? Thanks https://dmoj.ca/src/5141019
You loop for times, not .
I submitted my solution and it got approved, and when I try to see others' solutions, it says can't find the page. What's going on here?
This comment is hidden due to too much negative feedback. Show it anyway.
I don't get it...
This comment is hidden due to too much negative feedback. Show it anyway.
This comment is hidden due to too much negative feedback. Show it anyway.
There should be inputs. The 1 is the input , and the rest are lines of text that follow it.
Imagine a social where you can't chat with 4 letters word.
After a month, the people in this social learned to add an extra space between each character :)
This comment is hidden due to too much negative feedback. Show it anyway.
If ur checking for spaces the last word wont have a space after it
Lol I'm replying to ur comment from 2 years ago, but whatever. U can just use
if (String.indexOf(" ") != -1)
, then the normal word cut, then in the else, just choose the entirety of the word as it's the last word, then moderate the word and yeahThis returns some very interesting results, especially when you take something from the internet and put it into your code.
This comment is hidden due to too much negative feedback. Show it anyway.
See this problem.