Notice
Recent Posts
Recent Comments
:: ADVANCE ::
[dovelet][다중 반복문] 세 거듭제곱 (cube) 본문
반응형
dovelet 4 단계 다중 반복문
http://59.23.113.171/30stair/cube/cube.php?pname=cube
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
29
30
31
32
33
34
35
36
37
38
39
40
41 |
#include <iostream>
using namespace std;
long cubearr[110];
void cube(int n)
{
int i;
for(i = 1; i <= n; i++) {
cubearr[i] = i*i*i;
}
}
void func(int n)
{
int i, j;
for(i = 2; i <= n; i++) {
for(j = 2; j < n; j++) {
for(int k = j; k < n; k++) {
for(int m = k; m < n; m++) {
if(cubearr[i] == cubearr[j] + cubearr[k] + cubearr[m]) {
printf("Cube = %d, Triple = (%d,%d,%d)\n", i, j, k, m);
}
}
}
}
}
return ;
}
int main(void)
{
int n;
cin >> n;
cube(n);
func(n);
return 0;
} |
반응형
'Algorithm > 구현 | ETC' 카테고리의 다른 글
[dovelet][다중 반복문] 거듭 제곱 테이블 (table) (0) | 2014.09.24 |
---|---|
[dovelet][다중 반복문] n번째 숫자 구하기 (se) (1) | 2014.09.23 |
[dovelet][다중 반복문] 3*n + 1의 최대 길이 (3nplusone) (0) | 2014.09.22 |
[dovelet][다중 반복문] 친구 수 (amicable) (0) | 2014.09.22 |
[dovelet][다중 반복문] lock (lock) (0) | 2014.09.22 |
Comments