Untitled
Anonymous
plain_text
02/10/2023 12:03 PM
348 B
15
Indexable
import java.util.Scanner;
public class Lab3
{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = Integer.parseInt(scanner.nextLine());
for (int i = 1 ; i <= n; i+=3) {
System.out.println(i);
}
}
}
Editor is loading...