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 - 이서영 #11

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

Conversation

leeseoyoung05
Copy link

@leeseoyoung05 leeseoyoung05 commented Apr 1, 2024

Description

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

  • 원기둥의 부피, 겉넓이를 구하는 코드를 구현하였다.

Important content

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

Question

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

  • 멀쩡한 화면이 보이질 않아요..
  • 코드 실행시 시간초과는 되지 않았지만 좀 오래걸리는 듯 했습니다.

Reference

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

Copy link

@Rommmu Rommmu left a comment

Choose a reason for hiding this comment

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

가이드라인 미준수
잘못 작성하신 코드를 수정해 다시 제출해주세요

@@ -0,0 +1,19 @@
import java.util.Scanner;
package bj_11201
Copy link

Choose a reason for hiding this comment

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

가이드라인 미준수
이 부분 잘못되었습니다.

name[i] = str.substring(0,1)+ str.substring(str.length()-1,str.length());
}

sc.close();
Copy link

Choose a reason for hiding this comment

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

피드백
Scanner close 같은 경우는 맨 마지막에 작성하는게 좋습니다

Comment on lines 4 to 6
public double PI = 3.14; int centerX;
int centerY;//
double R;//
Copy link

Choose a reason for hiding this comment

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

가이드라인 미준수
주석 코드와 다릅니다.
그리고 변수는 소문자 그리고 카멜케이스로 표기하는 것이 좋습니다.

Comment on lines 8 to 12
public Cylinder(int x, int y, double r) {
centerX = x;
centerY = y;
R = r; // 생성자1: 정수 인자 x, y 와 실수 인자 r을 전달 받아서 해당 필드 값을 초기화
}
Copy link

Choose a reason for hiding this comment

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

가이드라인 미준수
해당 필드 값을 초기화하는 생성자가 아닙니다.

Comment on lines 14 to 19
public Cylinder(int x, int y, int height, double r) {
centerX = x;
centerY = y;
this.height = height;
R = r; // 생성자2: 정수 인자 x, y, height 와 실수 인자 r을 전달 받아서 해당 필드 값을 초기화
}
Copy link

Choose a reason for hiding this comment

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

가이드라인 미준수
마찬가지로 해당 필드 값을 초기화하는 생성자가 아닙니다.

Copy link

@Rommmu Rommmu left a comment

Choose a reason for hiding this comment

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

과제 통과
과제 통과하셨습니다! 자바기초2 수업을 듣지 못하셔서 걱정이 되었는데, 열심히 복습하고 이해하고 적용해주신 코드인 것 같아 인상깊었습니다 🔥

@shinheekim shinheekim added the ✨ 과제 제출 아기사자가 처음 제출한 상태를 말합니다. label Apr 1, 2024
@Rommmu Rommmu added ✅ 과제 통과 조지미에게 확인을 받은 후의 상태입니다. and removed ✨ 과제 제출 아기사자가 처음 제출한 상태를 말합니다. labels Apr 1, 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.

4 participants