| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main(void) { int x, y; printf("ù¹øÂ° ¼ö="); scanf("%d", &x); printf("µÎ¹øÂ° ¼ö="); scanf("%d", &y); printf("Å«¼ö=%d \n", (x > y) ? x : y); printf("ÀÛÀº¼ö=%d \n", (x < y) ? x : y); } | cs |


http://itsys.hansung.ac.kr/cgi-bin/onlineTest/viewCcoding/onlineCcoding.cgi?source=src/chap05/condition.c
CÇÁ·Î±×·¡¹Ö(ÇÁ·Î±×·¡¹Ö¾ð¾î) ½Ç½À°Ô½ÃÆÇ