프로그램/C# - Study / / 2010. 9. 10. 12:23

5D - 배열

반응형

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Ex09Array
{
    class Program
    {
        static void Main(string[] args)
        {
            Random r = new Random(); //난수발생기 선언

            int[] ar = new int[10];
            for (int i = 0; i < 10; i++)
            {
                ar[i] = r.Next(100, 1000); // 100 ~ 999 사이의 난수
                       // Next 지정된 범위 내의 난수를 발생
            }

            for (int i = 0; i < 10; i++)
            {
                Console.WriteLine("ar[{0}] = {1}", i, ar[i]);
            }
        }
    }
}

/*******************************************************
 * 배열
 * 1. 동일한 자료형의 데이터 집합
 * 2. 생성시점에 크기가 결정되어야 한다.
 * 3. 배열은 참조형 입니다. (클래스의 객체)
 * 4. 형식 : 자료형 이름 = new 자료형[갯수]; 
 *    예) int[] ar = new int[10];
 *
 * *****************************************************/


-- 과제! ----------------------------------
로또생성기
i)   1 ~ 45  
     Random
     중복 X
     6개 추출
ii)  평균( 20 ~ 25 )
     Method 써서 코딩

=> 출력 ( 사용자가 원하는 만큼 반복 )
-------------------------------------------



1D ~ 5D 내용 => Framework, 변수, 상수, 자료형, 연산자, 제어문, 함수

반응형
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유