Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp1
- {
- class Program
- {
- static void Main()
- {
- Console.WriteLine("Please, enter the A = ");
- int A = int.Parse(Console.ReadLine());
- Console.WriteLine("Please, enter the B = ");
- int B = int.Parse(Console.ReadLine());
- Console.WriteLine("Please, enter the X = ");
- int X = int.Parse(Console.ReadLine());
- Console.WriteLine("Please, enter the Y = ");
- int Y = int.Parse(Console.ReadLine());
- while (A <= B)
- {
- if (A%10 ==X || A%10 == Y)
- Console.Write("{0} ",A);
- A++;
- }
- }
- }
- }
RAW Paste Data