반응형
크기가 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 |
반응형