캠퍼스 시삽 과제 3-2) 컬렉션 점찍어 출력하기(Parallel Ver.) using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;using System.Threading.Tasks; namespace ConsoleApplication3{ class Program { static void Main(string[] args) { int time = 0, time2=0; StringBuilder str = new StringBuilder(); ArrayList list = new ArrayList(); for (int i = 0; i < 100000; i++) { list.Add("이재민" + i); } time = Environment.TickC.. 더보기 캠퍼스 시삽 과제 3-2) 컬렉션 점찍어 출력하기(While Ver.) using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections; namespace ConsoleApplication3{ class Program { static void Main(string[] args) { int count=0; StringBuilder str = new StringBuilder(); ArrayList list = new ArrayList(); list.Add("윤병결"); list.Add("조현석"); list.Add("이재민"); list.Add("김은진"); list.Add("성연지"); list.Add("박기완"); while(true) { str.A.. 더보기 캠퍼스 시삽 과제 3-2) 컬렉션 점찍어 출력하기(StringBuilder Ver.) 문자열 변수로 저장 후 출력하라고 하셔서 수정하여 올립니다. ^~^ 더보기 이전 1 ··· 41 42 43 44 45 46 47 ··· 63 다음