문제 8 실행결과와 같이 되도록 프로그램을 작성하시오. int[] code {-9, -55, 73, 116, 101, 205, 1000}초기화 조건 : arr배열의 값들은 code배열에 있는 값으로만 존재함 아울러, 난수를 발생시켜 대입토록 한다. 실행결과 출력되는 값은 code배열에 있는 값으로만 구성됨 arr배열 값 출력 [-55, 1000, 1000, -9, 73, -9, 116, -55, 1000, 1000] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Array_08 { internal class Program { s..