프로그래밍/C,C++

Codeup Q.1106 C언어

enable7997 2022. 8. 25. 19:21
반응형

소스코드

더보기

1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <limits.h> 
 
int main(){
    int a = INT_MAX;
    int b = INT_MIN;
    printf("%d %d",b,a);
    return 0;
}
 
cs

반응형