Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- Scanner keyboard = new Scanner(System.in);
- int from;
- int to;
- int by;
- System.out.println(" Count from: ");
- from = keyboard.nextInt();
- System.out.println(" Count to: ");
- to = keyboard.nextInt();
- System.out.println(" Count by: ");
- by = keyboard.nextInt();
- for (int n = from; n <= to; n = n + by) {
- System.out.println(n);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment