U E D R , A S I H C RSS

새싹교실/2017/따라와반/과제방

Difference between r1.3 and the current

@@ -1,36 +1,16 @@
[[TableOfContents]]
= 자바 =
== 1회차 ==
* [https://www.acmicpc.net/problem/2748 피보나치 수 2]
=== 이민욱 ===
{{{
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회차|1회차 과제 제출]
* [/자바/2회차|2회차 과제 제출]
* [/자바/3회차|3회차 과제 제출]
* [/자바/4회차|4회차 과제 제출]

=== 정석우 ===
{{{
(여기에 코드를)
}}}
= 자료구조 =
* [/자료구조/1회차|1회차 과제 제출]
* [/자료구조/2회차|2회차 과제 제출]
* [/자료구조/3회차|3회차 과제 제출]
* [/자료구조/4회차|4회차 과제 제출]
* [/자료구조/5회차|5회차 과제 제출]
* [/자료구조/6회차|6회차 과제 제출]
* [/자료구조/7회차|7회차 과제 제출]





Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:30:07
Processing time 0.0399 sec