HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
[New] 아만드팀
[New] 아만드팀
/
김수빈
김수빈
/
🗒️
메모장
/
2. 프로젝트 설계

2. 프로젝트 설계

Excalidraw
Excalidraw is a virtual collaborative whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them.
Excalidraw
https://excalidraw.com/
Excalidraw
  • 숫자야구 게임설계
  • 요구사항 파악하기
    • 게임의 룰을 이해
    • 동작환경, 데이터의 범위
      • 3자리 숫자사용
      • 중복된 숫자 사용 x
      • 1~9 사용 (0은 사용 x)
      • Console상에서 동작하는 프로그램
  • 일을 객체로 나누기/ 객체를 연관짓기
    • notion image
    • NumberGenerator : 문제를 생성하는 클래스
      • Baseball은 얘를 사용한다.
      notion image
      Input : Baseball은 사용자의 Input을 가져와서 처리함
      Output : Baseball은 Output을 사용해서 화면에 출력함
      notion image
       
    • BaseBall
    • NumberGenerator
    • Input
    • Output
    •  
       
  • 핵심로직 설계하기
    • FlowChart
    • notion image
       
       
이제 코드를 짜보자,