using System;
class Program {
static void Main() {
Console.Write("Enter number: ");
int n = int.Parse(Console.ReadLine());
int min = 9;
while(n > 0) {
int d = n % 10;
if(d < min) min = d;
n /= 10;
}
Console.WriteLine("Smallest digit: " + min);
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter