본문 바로가기

프로그래밍 문제/정올

593 : 문자열1 - 자가진단1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <time.h>
 
#pragma warning (disable:4996)
 
int main()
{
    int num;
 
 
    while(1)
    {
        printf("ASCII code =? ");
        scanf("%d"&num);
        if((num <= 33|| (127 <= num))
            break;
        printf("%c\n", num);
    }
 
    return 0;
}
cs

분명히 맞는데 인공지능이 탈지능 해버린 것 같다.

한 6번, 각각 다른 코드로 시도했는데 도저히 알아먹지를 못한다.

;;;