-
Notifications
You must be signed in to change notification settings - Fork 13
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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 |
There was a problem hiding this comment.
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(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
피드백
Scanner close 같은 경우는 맨 마지막에 작성하는게 좋습니다
public double PI = 3.14; int centerX; | ||
int centerY;// | ||
double R;// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
가이드라인 미준수
주석 코드와 다릅니다.
그리고 변수는 소문자 그리고 카멜케이스로 표기하는 것이 좋습니다.
public Cylinder(int x, int y, double r) { | ||
centerX = x; | ||
centerY = y; | ||
R = r; // 생성자1: 정수 인자 x, y 와 실수 인자 r을 전달 받아서 해당 필드 값을 초기화 | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
가이드라인 미준수
해당 필드 값을 초기화하는 생성자가 아닙니다.
public Cylinder(int x, int y, int height, double r) { | ||
centerX = x; | ||
centerY = y; | ||
this.height = height; | ||
R = r; // 생성자2: 정수 인자 x, y, height 와 실수 인자 r을 전달 받아서 해당 필드 값을 초기화 | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
가이드라인 미준수
마찬가지로 해당 필드 값을 초기화하는 생성자가 아닙니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
과제 통과
과제 통과하셨습니다! 자바기초2 수업을 듣지 못하셔서 걱정이 되었는데, 열심히 복습하고 이해하고 적용해주신 코드인 것 같아 인상깊었습니다 🔥
Description
<!— 구현 및 작업 내용을 적어주세요 —>
Important content
<!— 주의 깊게 봐줬으면 하는 부분을 적어주세요 —>
Question
<!— 궁금한 점을 적어주세요 —>
Reference
<!— 참고한 레퍼런스가 있다면 공유해 주세요 —>