[C] 3개의 정수를 입력하여 최댓값과 최솟값을 출력하는 프로그램 - 삼항연산자 ( ? )
12345678910111213141516171819202122//3개의 정수를 입력받고 최댓값과 최솟값을 구해주는 프로그램//Layer7 10112#include #include int main(){ int a,b,c; int min,mid,max; int tmp; printf("3개의 정수를 입력하세요. : "); scanf("%d %d %d",&a,&b,&c); (a>b) ? max = a : max = b ; (b>c) ? max = b : max = c ; printf("최대값은 %d 입니다.\n",max); (a