피보나치 수열 -> 30번쨰 값을 구하라
0 1 1 2 3 5 8 13
package work18;
public class Main {
public static void main(String[] args) {
//배열x
/* int a= 0,b = 1,result = 0;
for (int i = 1; i < 30; i++) {
result=a+b;
a=b;
b=result;
}
System.out.println("result : "+ result);
*/
//배열O
long a, b, c;
long array[] = new long[30];
a= 0;
b = 1;
array[0] = a;
array[1] = b;
int w = 0;
while(w < 28) {
c = a + b;
array[w + 2] = c;
a=b;
b=c;
w++;
}
for (int i = 0; i < array.length; i++) {
System.out.print(array[i]+ " ");
}
}
}
'language > java실습' 카테고리의 다른 글
[java, 자바] 클레스를 이용해서 달력만들기 (0) | 2020.12.28 |
---|---|
[java,자바] 성적출력프로그램 (0) | 2020.12.25 |
[java,자바] 이차원배열의 총합, 평균 (0) | 2020.12.24 |
[java,자바] 거스름돈 (0) | 2020.12.24 |
[java,자바] 대문자->소문자 변경 (0) | 2020.12.24 |
최근댓글