Á¤¼ºÈÆ
    relational.c (±³Àç)
  http://itsys.hansung.ac.kr/cgi-bin/onlineTest/viewCcoding/onlineCcoding.cgi?source=src/chap04/relational.c



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
 
int main(void)
{
    int x, y;
 
    printf("µÎ °³ÀÇ Á¤¼ö¸¦ ÀÔ·ÂÇϽÿÀ: ");
    scanf("%d%d"&x, &y);
 
    printf("%d == %dÀÇ °á°ú°ª: %d\n", x, y, x == y);
    printf("%d != %dÀÇ °á°ú°ª: %d\n", x, y, x != y);
    printf("%d > %dÀÇ °á°ú°ª: %d\n", x, y, x > y);
    printf("%d < %dÀÇ °á°ú°ª: %d\n", x, y, x < y);
    printf("%d >= %dÀÇ °á°ú°ª: %d\n", x, y, x >= y);
    printf("%d <= %dÀÇ °á°ú°ª: %d\n", x, y, x <= y);
 
    return 0;
}
cs

  µî·ÏÀÏ : 2022-02-21 [23:28] Á¶È¸ : 1244 ´Ù¿î : 0   
 
¡â ÀÌÀü±Ûbit_op.c (Çлý Ç®ÀÌ) ÄÄÇ»ÅÍ¿¡¼­ À½¼ö Ç¥Çö (¸ð¹ü ´ä¾È)
¡ä ´ÙÀ½±Ûcomp_op.c (±³Àç)
ÇÁ·Î±×·¡¹Ö¾ð¾î ½Ç½À°Ô½ÃÆÇ
¹øÈ£ ¨Ï Á¦ ¸ñ Á¶È¸ µî·ÏÀÏ
l½Ç½À ¸ñÂ÷
70    ¦¦❷ Ãß°¡ µµÀü ¹®Á¦ (BMI °è»ê±â) (¸ð¹ü ´ä¾È) 81 04-04
69 ¦¦❶ µµÀü¹®Á¦ 2) 924 03-14
68    ¦¦❷ µµÀü¹®Á¦ 2) (¸ð¹ü ´ä¾È) 1048 03-14
67 ¦¦❶ µµÀü¹®Á¦ 1) 745 03-14
66    ¦¦❷ µµÀü¹®Á¦ 1) (¸ð¹ü ´ä¾È) 1086 03-14
65 ¦¦❶ lcal_quad_eq.c (±³Àç) 1336 02-21
64 ¦¦❶ ltypecast.c (±³Àç) 1291 02-21
63 ¦¦❶ lprec.c (±³Àç) 1407 02-21
62 ¦¦❶ lbit_operator.c (±³Àç) 1421 02-21
61 ¦¦❶ lbit_shift.c (±³Àç) 1406 02-21
60    ¦¦❷ bit_shift.c (Ãß°¡) 1460 03-17
59 ¦¦❶ lbit_op.c (±³Àç) 1434 02-21
58    ¦¦❷ bit_op.c (Çлý Ç®ÀÌ) ÄÄÇ»ÅÍ¿¡¼­ À½¼ö Ç¥Çö 607 03-20
57       ¦¦❸ ¨Õbit_op.c (Çлý Ç®ÀÌ) ÄÄÇ»ÅÍ¿¡¼­ À½¼ö Ç¥Çö (¸ð¹ü ´ä¾È) 1058 03-20
56 ¦¦❶ lrelational.c (±³Àç) 1244 02-21
55 ¦¦❶ lcomp_op.c (±³Àç) 1405 02-21
54 ¦¦❶ lbending.c (±³Àç) 1423 02-21
53 ¦¦❶ ldays.c (±³Àç) 1304 02-21
52 ¦¦❶ lincdec.c (±³Àç) 1285 02-21
51 ¦¦❶ lmodulo.c (±³Àç) 1340 02-21

[1] [Prev]-[11][12][13][14]