분류 전체보기(2)
-
4. 과제1 - live-study의 대시 보드
과제 1. live-study 대시 보드를 만드는 코드를 작성하세요. 깃헙 이슈 1번부터 18번까지 댓글을 순회하며 댓글을 남긴 사용자를 체크 할 것. 참여율을 계산하세요. 총 18회에 중에 몇 %를 참여했는지 소숫점 두자리가지 보여줄 것. Github 자바 라이브러리를 사용하면 편리합니다. 깃헙 API를 익명으로 호출하는데 제한이 있기 때문에 본인의 깃헙 프로젝트에 이슈를 만들고 테스트를 하시면 더 자주 테스트할 수 있습니다. 실행 결과 ParticipationCalculator 코드 필드 // github의 정보들을 가져오기 위한 api private final GitHub github; // 누구의 repository이며 어떤 repository의 dash board임을 알려주기위한 필드들 priv..
2020.12.12 -
4. 제어문에 대해 알아보자
목표 자바가 제공하는 제어문을 학습하세요. 제어문 제어문이란 무엇이며 자바가 제공하는 제어문은 어떤 것들이 있나? The statements inside your source files are generally executed from top to bottom, in the order that they appear. Control flow statements, however, break up the flow of execution by employing decision making, looping, and branching, enabling your program to conditionally execute particular blocks of code. [출처]: The Java™ Tutorials 소..
2020.12.12