Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1주차 Assignment - 조규림 #12

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

ckr8305
Copy link

@ckr8305 ckr8305 commented Apr 1, 2024

Description

<!— 구현 및 작업 내용을 적어주세요 —>

  • 백준 문제 풀이
  • Test1.java 풀어보기

Important content

<!— 주의 깊게 봐줬으면 하는 부분을 적어주세요 —>

  • 없습니다.

Question

<!— 궁금한 점을 적어주세요 —>

  • 코드가 효율적인지 궁급합니다.

Reference

<!— 참고한 레퍼런스가 있다면 공유해 주세요 —>

  • 없습니다.

@Junyeong-An Junyeong-An added ✨ 과제 제출 아기사자가 처음 제출한 상태를 말합니다. ✅ 과제 통과 조지미에게 확인을 받은 후의 상태입니다. and removed ✨ 과제 제출 아기사자가 처음 제출한 상태를 말합니다. ✅ 과제 통과 조지미에게 확인을 받은 후의 상태입니다. labels Apr 1, 2024
Copy link
Contributor

@Junyeong-An Junyeong-An left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

과제 수정 부탁드립니다!

for (int k = 0; k < arr.length; k++)
System.out.print(arr[k] + " ");


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Scanner 객체와 같은 자원은 사용 후에는 닫아주는 것이 좋습니다! sc.close() 메서드를 추가해 자원 누수를 방지할 수 있습니다!

import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Copy link
Contributor

@Junyeong-An Junyeong-An Apr 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

엄청 많은 데이터를 처리해야 할 경우 BufferedReader를 쓰는 것이 훨씬 효율적입니다! 한 번 공부해보시면 좋을 것 같습니다. 또한 문자열 생성을 StringBuilder로 생성해 한 번에 출력하는 것이 메모리 부족 방지에 도움이 될 수 있습니다! 참고 링크 입니다! https://rlakuku-program.tistory.com/33

package assign2;

class Cylinder {
final double PI = 3.14; // 원주율 3.14를 정적 상수 PI로 선언과 동시에 초기화
Copy link
Contributor

@Junyeong-An Junyeong-An Apr 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PI 변수는 상수입니다. 정적 상수는 어떤걸까요?

Copy link
Contributor

@Junyeong-An Junyeong-An left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

과제 통과입니다 🥳 고생 많으셨습니다!

@Junyeong-An Junyeong-An added ✅ 과제 통과 조지미에게 확인을 받은 후의 상태입니다. and removed ✨ 과제 제출 아기사자가 처음 제출한 상태를 말합니다. labels Apr 2, 2024
@shinheekim shinheekim changed the title 1주차 assignments -조규림 1주차 Assignments -조규림 Apr 2, 2024
@shinheekim shinheekim changed the title 1주차 Assignments -조규림 1주차 Assignment -조규림 Apr 2, 2024
@shinheekim shinheekim changed the title 1주차 Assignment -조규림 1주차 Assignment - 조규림 Apr 2, 2024
@giwoong01 giwoong01 closed this Jul 9, 2024
@giwoong01 giwoong01 reopened this Jul 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✅ 과제 통과 조지미에게 확인을 받은 후의 상태입니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants