Advertisement
Ochkasty_Dino

Practicum2-II-5

Sep 9th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 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. namespace Example
  7. {
  8.     class Program
  9.     {
  10.         static void Main()
  11.         {
  12.             Console.Write("a= ");
  13.             byte a = byte.Parse(Console.ReadLine());
  14.             string result = (a / 10 < a % 10)? "Наименьшим будет первое число": "Наименьшим будет второе число";
  15.             Console.WriteLine( result );
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement