Write a loop that reads strings from standard input where the string is either “land”, “air”, or “water”.

java

LANGUAGE: Java CHALLENGE: Write a loop that reads strings from standard input where the string is either “land”, “air”, or “water”. The loop terminates when “xxxxx” (five x characters ) is read in. Other strings are ignored. After the loop, your code should print out 3 lines: the first consisting of the string “land:” followed by…

Read More