Advertisement
Spocoman

01. Smallest of Three Numbers

Jan 26th, 2022
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.80 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SmallestOfThreeNumbers
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num1 = int.Parse(Console.ReadLine());
  10.             int num2 = int.Parse(Console.ReadLine());
  11.             int num3 = int.Parse(Console.ReadLine());
  12.  
  13.             Console.WriteLine(SmallestNum(num1, num2, num3));
  14.         }
  15.  
  16.         static int SmallestNum(int num1, int num2, int num3)
  17.         {
  18.             int print = 0;
  19.             if (num1 < num2 && num1 < num3)
  20.             {
  21.                 print = num1;
  22.             }
  23.             else if (num2 < num3 && num2 < num1)
  24.             {
  25.                 print = num2;
  26.             }
  27.             else
  28.             {
  29.                 print = num3;
  30.             }
  31.             return print;
  32.         }
  33.     }
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement