I need help to complete the tasks:
Do While Loops Write a program that takes N numbers as input and outputs the numbers from N to 0, skipping the ones that are multiple of 3. Sample Input 7 Sample Output 7 5 4 2 1 0 My code: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); int number = read.nextInt(); // N while(number > 0) { if (number == 3){ continue; } System.out.println(number); number = number - 1; } System.out.println("0"); } } I can manage a series of numbers that is getting smaller and smaller, but not omitting the 3 and so on. What can I do?