Difference between r1.2 and the current
@@ -1,36 +1,16 @@
[[TableOfContents]]
== 이민욱 ==
{{{
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// write your code here
long[] FIBO = new long[100];
int i;
for(i=0;i<100;i++){
FIBO[i]=-1;
}
FIBO[0]=0;
FIBO[1]=1;
Scanner input = new Scanner(System.in);
int N = input.nextInt();
for(i=2;i<=N;i++){
if(FIBO[i]==-1){
FIBO[i]=FIBO[i-2]+FIBO[i-1];
}
}
System.out.printf("%d",FIBO[N]);
}
}
}}}
== 정석우 ==
{{{
(여기에 코드를)
}}}
= 1회차 - 자바 =
* [https://www.acmicpc.net/problem/2748 피보나치 수 2]
= 자바 =
* [/자바/1회차|1회차 과제 제출]
* [/자바/2회차|2회차 과제 제출]
* [/자바/3회차|3회차 과제 제출]
* [/자바/4회차|4회차 과제 제출]
= 자료구조 =
* [/자료구조/1회차|1회차 과제 제출]
* [/자료구조/2회차|2회차 과제 제출]
* [/자료구조/3회차|3회차 과제 제출]
* [/자료구조/4회차|4회차 과제 제출]
* [/자료구조/5회차|5회차 과제 제출]
* [/자료구조/6회차|6회차 과제 제출]
* [/자료구조/7회차|7회차 과제 제출]