동적 할당하기

Study/C++ 2011. 9. 29. 20:16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <iostream>
 
using namespace std;
 
void main(int argc, char* argv[])
{
    int n, *numbers, sum = 0;
 
    cin >> n;
    numbers = new int[n];
 
    for(int i = 0; i < n; i++){
        cin >> numbers[i];
        sum += numbers[i];
    }
 
    cout << sum / n;
 
    delete numbers;
}

'Study > C++' 카테고리의 다른 글

소수 확인하기  (0) 2011.09.29
빙고 게임  (0) 2011.09.29
난수 발생하기  (0) 2011.09.29
IT CookBook, C++ 프로그래밍 기초 연습문제 해답  (0) 2011.09.03
포인터  (0) 2011.09.03
Posted by 코딩하는 야구쟁이
,