RNA

in #ita7 days ago

using System;

public static class RnaTranscription
{
public static string ToRna(string nucleotide)
{
string complete = "";
if (nucleotide == "")
{
return "";
}

    else 
        {  
         for(int i=0; i<nucleotide.Length; i++)
            {
             if(nucleotide[i] == 'G')
                    {
                        complete += "C";
                    }
                    else if(nucleotide[i] == 'C')
                    {
                        complete += "G";
                    }
                   else if(nucleotide[i] == 'T')
                    {
                        complete += "A";
                    }
                  else if (nucleotide[i] == 'A')
                       {complete += "U";}
                     
            }
 return complete;
    } 
}

}

Sort:  

Thank you, friend!
I'm @steem.history, who is steem witness.
Thank you for witnessvoting for me.
image.png
please click it!
image.png
(Go to https://steemit.com/~witnesses and type fbslo at the bottom of the page)

The weight is reduced because of the lack of Voting Power. If you vote for me as a witness, you can get my little vote.