Advertisement
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;
- namespace _2._2
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Введите число = ");
- int a = int.Parse(Console.ReadLine());
- Console.Write("Введите цифру A = ");
- int A = int.Parse(Console.ReadLine());
- Console.Write("Оканчивается ли на данную цифру? ");
- Console.Write((a % 10 == A) ? true : false);
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement