Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

정수 범위 테스트 보충 #36

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions integer/2e31-1.aheui
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
밤밤따빠따빠따빠반나따받반타투 2^31-1
ㅇㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐

2^31-1의 출력, 비교, 조건 연산으로 부호있는 32비트 정수 지원 여부를 확인합니다.
1 change: 1 addition & 0 deletions integer/2e31-1.out
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
21474836471
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions integer/2e63-1.aheui
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
밤밤따빠따빠따빠따빠반나따받반타투 2^63-1
ㅇㅇㅇㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐

2^63-1의 출력, 비교, 조건 연산으로 부호있는 64비트 정수 지원 여부를 확인합니다.
1 change: 1 addition & 0 deletions integer/2e63-1.out
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
92233720368547758071
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions integer/2e65.aheui
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
밤밤따빠따빠따빠따빠따반뚜 2^65
ㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐

2^65의 출력, 비교, 조건 연산으로 큰 정수 지원 여부를 확인합니다.
4 changes: 4 additions & 0 deletions integer/n2e31.aheui
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
밤밤따빠따빠따빠반나따바파투 -2^31
ㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐

-2^31의 출력, 비교, 조건 연산으로 부호있는 32비트 정수 지원 여부를 확인합니다.
1 change: 1 addition & 0 deletions integer/n2e31.out
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-21474836481
4 changes: 4 additions & 0 deletions integer/n2e63.aheui
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
밤밤따빠따빠따빠따빠반나따바파투 -2^63
ㅇㅇㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐

-2^63의 출력, 비교, 조건 연산으로 부호있는 64비트 정수 지원 여부를 확인합니다.
1 change: 1 addition & 0 deletions integer/n2e63.out
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-92233720368547758081
4 changes: 4 additions & 0 deletions integer/n2e65.aheui
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
밤밤따빠따빠따빠따빠따반따바파투 -2^65
ㅇㅇㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐

-2^65의 출력, 비교, 조건 연산으로 큰 정수 지원 여부를 확인합니다.
Loading