You can also mention the syntax and Java specifications here, There are far better introductory sites than I write myself, so I'll just introduce them.
It's important, but sometimes you can skip what you don't understand. Suddenly don't try to understand everything.
Introductory sites are introduced here and there, but here is the one that is easy to get to https://manga.crocro.com/?cat=java&pg=index#
Easy to read in manga format. First, read up to Chapter 6. Very easy to understand.
Output on the console using a loop from 1 to 100. However, the following specifications must be met. "Fizz" if divisible by 3 ("Bizz" for Bizz Buzz), "Buzz" if divisible by 5, "Fizz Buzz" if divisible by both (ie divisible by 15) (Fizz Buzz) You have to say "Bizz Buzz") instead of numbers.
Read Chapter 7 of the introductory site and add methods to the Main class. The method must meet the following requirements:
Recommended Posts