-
Notifications
You must be signed in to change notification settings - Fork 5
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주차] 해바라기반 - 이승현 #4
The head ref may contain hidden characters: "1\uC8FC\uCC28/\uD574\uBC14\uB77C\uAE30\uBC18/\uC774\uC2B9\uD604"
Conversation
{ | ||
if ('0' <= input[i] && input[i] <= '9') | ||
{ | ||
num += pow(10, tenth++) * (input[i] - '0'); |
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.
pow 함수
의 경우, 환경에 따라서 오차를 내는 경우도 존재하다고 합니다!
이 경우 때문에 저도 pow 함수
를 잘 안 쓰는 편인데,
제가 첨부한 아래의 게시글과 따로 구글 검색해 보시면 도움 될 거 같습니다 :)
(만약, 제가 알고 있던 정보가 틀린 정보라면 링크랑 대댓글 남겨주시면 감사드리겠습니다)
Pow 함수의 문제점
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.
그러면 문형님은 pow 함수
대신 어떤 걸 쓰시나요? 현재 제가 생각나는 경우는 for문으로 10을 i번 곱하는 것밖에 없네요.
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.
PR title은 Collaboration Guide에 나와있는 것과 같이 [{주차}] {그룹} - {이름}
으로 적어주세요!
{ | ||
num += pow(10, tenth++) * (input[i] - '0'); | ||
if (i == 0) | ||
totalSum += num + plusSum; |
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.
맨 앞의 수
가 결과값에 반영이 안 되는 문제 때문에 if (i ==0)
처리를 한 걸로 생각되는데,
여기서 처리하기 보다는 35번 줄의 printf("%d\n", totalSum);
을
printf("%d\n", totalSum + plusSum + num);
으로 수정하는 것이
if문
의 대한 overhead가 낭비되지 않아서 더 좋아보입니다
수정하였습니다. |
확인했습니다. 감사합니다. |
이제 확인했는데 다음 주차부터는 이렇게 해주시면 감사드리겠습니다! @vcho1958 @DongWooE @kingyong9169 분들께서도 |
😀 PR을 올리기 전 준비
💡 소속 그룹
해바라기반 (@CBNU-Nnet/team)
🤩 이번주 문제
문제
세준이는 양수와 +, -, 그리고 괄호를 가지고 식을 만들었다. 그리고 나서 세준이는 괄호를 모두 지웠다.
그리고 나서 세준이는 괄호를 적절히 쳐서 이 식의 값을 최소로 만들려고 한다.
괄호를 적절히 쳐서 이 식의 값을 최소로 만드는 프로그램을 작성하시오.
입력
첫째 줄에 식이 주어진다. 식은 ‘0’~‘9’, ‘+’, 그리고 ‘-’만으로 이루어져 있고, 가장 처음과 마지막 문자는 숫자이다. 그리고 연속해서 두 개 이상의 연산자가 나타나지 않고, 5자리보다 많이 연속되는 숫자는 없다. 수는 0으로 시작할 수 있다. 입력으로 주어지는 식의 길이는 50보다 작거나 같다.
🧑💻 어떻게 푸셨나요?
식의 오른쪽부터 시작하여 양수인 경우 plusSum에 합산한 후, - 부호가 나왔을 시 여태 합산한 양수값 plusSum과 현재 정수의 양수값을 음수로 치환하여 totalSum에 저장한다. totalSum은 구하고자하는 답을 저장한다.
예시
5-1+2+3
✍️ 질문을 적어주세요.
📖 참고 사항