-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from aheui/integer
정수 범위 테스트 보충
- Loading branch information
Showing
14 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
밤밤따빠따빠따빠반나따받반타투 2^31-1 | ||
ㅇㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐 | ||
|
||
2^31-1의 출력, 비교, 조건 연산으로 부호있는 32비트 정수 지원 여부를 확인합니다. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
21474836471 |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
밤밤따빠따빠따빠따빠반나따받반타투 2^63-1 | ||
ㅇㅇㅇㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐 | ||
|
||
2^63-1의 출력, 비교, 조건 연산으로 부호있는 64비트 정수 지원 여부를 확인합니다. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
92233720368547758071 |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
밤밤따빠따빠따빠따빠따반뚜 2^65 | ||
ㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐 | ||
|
||
2^65의 출력, 비교, 조건 연산으로 큰 정수 지원 여부를 확인합니다. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
밤밤따빠따빠따빠반나따바파투 -2^31 | ||
ㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐 | ||
|
||
-2^31의 출력, 비교, 조건 연산으로 부호있는 32비트 정수 지원 여부를 확인합니다. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-21474836481 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
밤밤따빠따빠따빠따빠반나따바파투 -2^63 | ||
ㅇㅇㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐 | ||
|
||
-2^63의 출력, 비교, 조건 연산으로 부호있는 64비트 정수 지원 여부를 확인합니다. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-92233720368547758081 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
밤밤따빠따빠따빠따빠따반따바파투 -2^65 | ||
ㅇㅇㅇㅇㅇㅇㅇ희처뻐멍저뻐뻐멍뻐 | ||
|
||
-2^65의 출력, 비교, 조건 연산으로 큰 정수 지원 여부를 확인합니다. |