You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
만약에 로직을 분리하게 될 경우 재사용을 가정하기 때문에
현재 사용법이 달라져야 할 것 같습니다..
ex)
public static void main(String []args){
int start = Integer.parseInt(args[0]);
}
사용 변경
public static void main(String []args){
fibonacci(100);
fibonacci(1000);
}
ex)
public static void main(String []args){
int start = Integer.parseInt(args[0]);
}
사용 변경
public static void main(String []args){
fibonacci(100);
fibonacci(1000);
}
재사용 가능하게 로직을 main에서 분리해주세요.
The text was updated successfully, but these errors were encountered: