일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- html charset
- git flow
- #1차원배열
- #android activity
- relative path
- border-box
- #binary
- #3차원배열
- html plug-in
- 하이퍼레저패브릭
- #C++ has~a
- 토큰경제
- #2차원배열
- html object
- #자바상속#자바이즈어#is~a
- html multimedia
- #JAVASCRIPT
- #bubbleSort
- html youtube
- html code
- #성적관리프로그램
- html5 new tag
- #CallByAddress
- mac terminal command
- hyperledger transaction
- docker example
- #C++ 연산자함수오버로딩
- #다차원포인터
- html id
- html video
Archives
- Today
- Total
A sentimental robot
quirt some 본문
for (int i = 1000; i < 10000; i++) {
int q = i / 100;
int r = i % 100;
int result = (q + r) * (q + r);
if (i == result) System.out.println(i);
}
for (int i = 1000; i < 10000; i++) {
int q = i / 100;
int r = i % 100;
int result = (int) Math.pow(q + r, 2);
if (i == result) System.out.println(i);
}
'Data Structure' 카테고리의 다른 글
콜라체의 수 / 우박수 (0) | 2018.02.13 |
---|---|
Bubble sort (0) | 2018.01.03 |
Double LinkedList (0) | 2018.01.03 |
Single LinkedList Exercise3 (0) | 2018.01.03 |
Map에 대하여.. (0) | 2018.01.03 |