Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Find the minimum value from two given two numbers, represented as string

C# Sharp Basic: Exercise-66 with Solution

Write a C# Sharp program to find the minimum value from two given two numbers, represented as string.

Sample Solution:

C# Sharp Code:

using System;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {

            Console.WriteLine(test("12", "43"));
        }
        public static string test(string strn1, string strn2)
        {
            return Int32.Parse(strn1) > Int32.Parse(strn2) ? strn2 : strn1;
        }
    }
}

Sample Output:

12

Flowchart:

Flowchart: C# Sharp Exercises - Find the minimum value from two given two numbers, represented as string.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to multiply all of elements of a given array of numbers by the array length.
Next: Write a C# Sharp program to create a coded string from a given string, using specified formula.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.