As we saw with comments, reading code is just as important as writing code. We should write code that is easy for other people to read. Those people can be co-workers, friends, or even yourself! Java does not interpret whitespace, the areas of the code without syntax, but humans use whitespace to read code without difficulty. Functionally, these two code samples are identical: 주석에서 봤듯이 코드를 읽는 것도..