Advertisement
Spocoman

Gifts from Santa

Nov 27th, 2021 (edited)
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 KB | None | 0 0
  1. using System;
  2.  
  3. namespace GiftsFromSanta
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.             int m = int.Parse(Console.ReadLine());
  11.             int s = int.Parse(Console.ReadLine());
  12.  
  13.             for (int i = m; i >= n; i--)
  14.             {
  15.                 if (i == s && s % 2 == 0 && s % 3 == 0)
  16.                 {
  17.                     break;
  18.                 }
  19.                 else if (i % 2 == 0 && i % 3 == 0)
  20.                 {
  21.                     Console.Write($"{ i} ");
  22.                 }
  23.             }
  24.         }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement