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: Create a coded string from a given string, using specified formula

C# Sharp Basic: Exercise-67 with Solution

Write a C# Sharp program to create a coded string from a given string, using specified formula.

Replace all 'P' with '9', 'T' with '0', 'S' with '1', 'H' with '6' and 'A' with '8'.

Sample Solution:

C# Sharp Code:

using System;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test("PHP"));
            Console.WriteLine(test("JAVASCRIPT"));
        }
        public static string test(string str1)
        {
            return str1.Replace("P", "9").Replace("T", "0").Replace("S", "1").Replace("H", "6").Replace("A", "8");
        }
    }
}

Sample Output:

969
J8V81CRI90

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 find the minimum value from two given two numbers, represented as string.
Next: Write a C# Sharp program to count a specified character (both cases) in a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.