Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Numbers1ToNWithStep3 {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int number = Integer.parseInt(scanner.nextLine());
- for (int n = 1; n <= number; n += 3) {
- System.out.println(n);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement