Advertisement
myloyo

2.2.15

Sep 8th, 2023 (edited)
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int a, c3, c2, c1;
  14.             Console.Write("Введите число: ");
  15.             a = int.Parse(Console.ReadLine());
  16.             c3 = a % 10;
  17.             c2 = (a / 10) % 10;
  18.             c1 = (a / 100) % 10;
  19.             Console.WriteLine((c3==c2 && c1==c2 && c1 == c3)? "Да, одинаковые" : "Нет, разные");
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement