/* * http://sosal.kr/ * made by so_Sal */ Using codon (3 nucleic acid of DNA), it returns 1 Amino acids. DNA 염기서열을 이용하여 최종 만들어질 Protein을 구하는 프로그램을 만들 때 구현해봤던 함수입니다. parameter is string which consists of 3 char of base.ex). AGC, TAT... 파라미터로 들어오는 input은 3개의 문자열입니다.예) AGC, TAT char translation(string input){ char RET; switch(input[0]){ case 'A': switch(input[1]){ case 'A'://AA switch(input[2]){ ca..