Á¤¼ºÈÆ
    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] Á¶È¸ : 3557 ´Ù¿î : 0   
 
¡â ÀÌÀü±Ûbit_op.c (Çлý Ç®ÀÌ) ÄÄÇ»ÅÍ¿¡¼­ À½¼ö Ç¥Çö (¸ð¹ü ´ä¾È)
¡ä ´ÙÀ½±Ûcomp_op.c (±³Àç)
CÇÁ·Î±×·¡¹Ö(ÇÁ·Î±×·¡¹Ö¾ð¾î) ½Ç½À°Ô½ÃÆÇ
¹øÈ£ ¨Ï Á¦ ¸ñ
l¡Ø ³» ȨÆäÀÌÁö Á¢¼Ó ¾ÈµÉ ¶§ ÇØ°á ¹æ¹ý ¡Ú¡Ú¡Ú
lMini Project (¾îµåº¥Ã³ °ÔÀÓ ¸¸µé±â) Ãß°¡ ±¸Çö // ¡Ú¡Ú¡Ú ±â¸»°úÁ¦ °ÔÀÓ...
l½Ç½À ¸ñÂ÷
73    ¦¦❷ µµÀü¹®Á¦ 1) (¸ð¹ü ´ä¾È)
72 ¦¦❶ lcal_quad_eq.c (±³Àç)
71 ¦¦❶ ltypecast.c (±³Àç)
70 ¦¦❶ lprec.c (±³Àç)
69 ¦¦❶ lbit_operator.c (±³Àç)
68 ¦¦❶ lbit_shift.c (±³Àç)
67    ¦¦❷ bit_shift.c (Ãß°¡)
66 ¦¦❶ lbit_op.c (±³Àç)
65    ¦¦❷ bit_op.c (Çлý Ç®ÀÌ) ÄÄÇ»ÅÍ¿¡¼­ À½¼ö Ç¥Çö
64       ¦¦❸ bit_op.c (Çлý Ç®ÀÌ) ÄÄÇ»ÅÍ¿¡¼­ À½¼ö Ç¥Çö (¸ð¹ü ´ä¾È)¨Õ
63 ¦¦❶ lrelational.c (±³Àç)
62 ¦¦❶ lcomp_op.c (±³Àç)
61 ¦¦❶ lbending.c (±³Àç)
60 ¦¦❶ ldays.c (±³Àç)
59 ¦¦❶ lincdec.c (±³Àç)
58 ¦¦❶ lmodulo.c (±³Àç)
57    ¦¦❷ modulo.c (Çлý Ç®ÀÌ) ½Ã/ºÐ/ÃÊ·Î º¯È¯
56       ¦¦❸ modulo.c (Ãß°¡) (¸ð¹ü ´ä¾È)
55 ¦¦❶ larithmetic2.c (±³Àç)
54 ¦¦❶ larithmetic1.c (±³Àç)

[1][2][3][4][5][6][7][8][9][10][11][12][13][14][15]