반응형

크기가 10인 1차원 배열에 난수를 저장한 후에, 최대값과 최소값을 출력하는 프로그램을 작성하라. 난수는 rand() 함수를 호출하여 생성하라.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int maxmin(int list[]);
#define SIZE 10
int main(void)
{
    srand((unsigned)time(NULL));
    int s[SIZE]={0};
    int i;
 
    for(i=0;i<SIZE;i++)
    {
        s[i]=rand();
    }
    maxmin(s);
    printf("최대값: %d 최소값: %d\n", s[9], s[0]);
    return 0;
}
int maxmin(int list[])
{
int i,j,temp,least;
for(i=0;i<SIZE-1;i++)
{
least=i;
for(j=i+1;j<SIZE;j++)
{
if(list[j]<list[least])
    least=j;
}
temp=list[i];
list[i]=list[least];
list[least]=temp;
}
for(i=0;i<SIZE;i++)
{
printf("%d ", list[i]);
}
printf("%\n");
return 0;
}
cs




반응형

'컴퓨터 & 프로그래밍 & 전자공학 > C언어' 카테고리의 다른 글

배열 복사기  (0) 2016.08.10
배열 일치 판별기  (0) 2016.08.10
월별 일수  (0) 2016.08.09
자리수 출력  (0) 2016.08.05
이항 계수  (0) 2016.08.05

+ Recent posts