Facebook
From Gray Bison, 4 Years ago, written in C#.
This paste is a reply to Gifts from Santa from Simeon - go back
Embed
Viewing differences between Gifts from Santa and Re: Gifts from Santa
package october_24_25;

import java.util.Scanner;

public class GiftsFromSanta {
    public static void main(String[] args) {
        Scanner keyboard = new Scanner(System.in);

        int n = keyboard.nextInt();
        int m = keyboard.nextInt();
        int s = keyboard.nextInt();

        for (int i = m; i >= n; i--) {
            if (i % 2 == 0 && i % 3 == 0) {
                if (i == s) {
                    break;
                }

                System.out.print(i + " ");
            }
        }
    }
}

Replies to Re: Gifts from Santa rss

Title Name Language When
Re: Re: Gifts from Santa Thundering Goose csharp 4 Years ago.