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

[제안] 나눗셈의 소수점 처리 #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions _posts/2006-10-27-specification.ko.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: default
title: 아희 스펙
---

마지막 수정: 2016-01-10
마지막 수정: 2016-01-12

**아희**는 한글로 된 [난해한 프로그래밍 언어](http://ko.wikipedia.org/wiki/%EB%82%9C%ED%95%B4%ED%95%9C_%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D_%EC%96%B8%EC%96%B4)입니다.

Expand Down Expand Up @@ -67,8 +67,10 @@ title: 아희 스펙
* ㄷ은 **덧셈** 명령으로 저장공간에서 두 값을 뽑아낸 다음 둘을 더한 값을 저장공간에 집어넣습니다.
* ㄸ은 **곱셈** 명령으로 저장공간에서 두 값을 뽑아낸 다음 둘을 곱한 값을 저장공간에 집어넣습니다.
* ㅌ은 **뺄셈** 명령으로 저장공간에서 두 값을 뽑아낸 다음 나중 값에서 먼저 값을 뺀 값을 저장공간에 집어넣습니다.
* ㄴ은 **나눗셈** 명령으로 저장공간에서 두 값을 뽑아낸 다음 나중 값에서 먼저 값을 나눈 값을 저장공간에 집어넣습니다.
* ㄹ은 **나머지** 명령으로 저장공간에서 두 값을 뽑아낸 다음 나중 값에서 먼저 값을 나눈 나머지를 저장공간에 집어넣습니다.
* ㄴ은 **나눗셈** 명령으로 저장공간에서 두 값을 뽑아낸 다음 나중 값에서 먼저 값을 나누어 나온 몫을 저장공간에 집어넣습니다.
* ㄹ은 **나머지** 명령으로 저장공간에서 두 값을 뽑아낸 다음 나중 값에서 먼저 값을 나누어 나온 나머지를 저장공간에 집어넣습니다.
* 나눗셈과 나머지 연산에서, 나머지는 항상 0보다 크거나 같고 나누는 값(제수)보다 작아야 합니다.
Copy link
Member

Choose a reason for hiding this comment

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

이 말대로라면 예를 들어 -5 / -2라면 나머지가 0보다 크거나 같고 -2보다 작아야 합니다.

* 나눗셈과 나머지 연산에서, 몫은 항상 정수여야 하고, 몫에 제수를 곱한 뒤 나머지를 더한 값은 연산을 하기 전의 피제수와 값이 같아야 합니다.
* 뽑아내는 두 개의 값은 ㅁ 명령을 두 번 실행해 뽑아낼 수 있는 값과 같습니다.

ㅁ 묶음 - 저장공간
Expand Down