ASCII 아트로 긴 덧셈을 시각화


13

ASCII 아트로 긴 나누기를 시각화하면 전혀 영감을 얻지 못합니다 .)

당신의 임무는 ASCII 아트로 긴 손을 추가하는 것입니다. 열을 오른쪽에서 왼쪽으로 더하고 결과에 1 자리 값을 배치하고 10 자리를 다음 열의 맨 위로 가져 와서 긴 덧셈을 해결합니다.

입력

입력은 2에서 9까지의 숫자를 입력으로 사용하는 한 원하는 형식으로 입력 할 수 있습니다.

산출

여기의 서식은 학교에서 배운 방식과 일치합니다.

carry row
 number1 
 number2
     ...
+   numX
--------
  result

여기서 원하는만큼의 후행 공백을 가질 수 있습니다.)

50, 50

1
 50
+50
---
100


1651, 9879

1111
 1651
+9879
-----
11530

6489789, 9874, 287

   1122
 6489789
    9874
+    287
--------
 6499950

ASCII 아트로 긴 뺄셈을 시각화하십시오 : 6 개월 후에 바로 오기
CalculatorFeline

그렇진, 내 목록입니다)
J Atkin

1
실제로 나는 캐리 행을 결과 아래에 두도록 배웠다.
Neil

1
우리는 어떻게 처리해야 9+9+9+9+9+9+9+9+9+9+9+9+9합니까?
Downgoat

1
@Downgoat ... you take from 2 to 9 numbers as input...
PurkkaKoodari

답변:


5

Pyth, 59 58 바이트

L.[dJhl`eSQ`b:jk_.u/+NsYT.t_MjRTQ00\0djbyMPQXyeQ0\+*J\-ysQ

온라인으로 사용해보십시오. 테스트 스위트.

너무 길어요 더 골프해야합니다.

설명

L                  helper function y = lambda b:
        eSQ          largest number in input
      l`             length as string
     h               increment
    J                save to J
 .[d       `b        pad argument with spaces to that length

                             carry row:
                jRTQ           each input to base 10
              _M               reverse each result
            .t      0          transpose, padding with zeroes
    .u               0         cumulative reduce from 0:
         sY                      sum digits of column
       +N                        add previous carry
      /    T                     floor-divide by 10
   _                           reverse
 jk                            join by ""
:                     \0d      replace 0 by space

          number rows:
    PQ      all input numbers but last one
  yM        pad to correct length
jb          print on separate lines

           last number row:
  eQ         last input number
 y           pad to correct length
X   0\+      change first char to +

        separator row:
 J        width of input (saved in helper)
* \-      that many dashes

       result row:
 sQ      sum of inputs
y        pad to correct length

1

배치, 326 바이트

바이트 수는 물론 설명을 포함하지 않습니다.

@echo off
set t=%*                            Get the space separated parameters
set t=%t: =+%                       Change the spaces into + signs
set/at=%t%,l=p=1                    Add together, and initialise length and power
set c=                              Carry string
set d=-                             Dash string
:l                                  Loop though each power of 10
set/al+=1,p*=10,s=t/p               Divide the total by the power
for %%n in (%*)do set/as-=%%n/p     Subtract each parameter divided
set c=%s%%c%                        Anything left must have been carried
set d=-%d%                          Add a - to the line of dashes
if %p% leq %t% goto l               Keep going until we run out of powers
echo(%c:0= %                        Delete any zeros in the carry and output it
:i                                  Loop through each parameter
set n=%d:-= %%1                     Pad it with a whole bunch of spaces
call set n=%%n:~-%l%%%              Extract the rightmost characters
if "%2"=="" set n=+%n:~1%           Insert a + before the last parameter
echo %n%                            And output it
shift                               Move to the next parameter
if not "%1"=="" goto i              Until they are all consumed
echo %d%                            Output the line of dashes
echo  %t%                           Output the total (with an indent for the +)

0

자바 스크립트 (ES6), 199 바이트

a=>[[...t=` `+a.reduce((t,n)=>t+n)].map((_,i)=>a.reduce((c,n)=>c-n[i],90+t[i])%10||` `),a=a.map(n=>(` `.repeat(l=t.length)+n).slice(-l))).join``,...a,`-`.repeat(l),t].join`\n`.replace(/ (?=.*\n-)/,`+`)

첫 번째 \n문자는 개행 문자이며 두 번째 문자는 정규식 이스케이프 시퀀스입니다. 설명:

a=>[                            Accept an array of numbers
 [...                           Split the total into digits
  t=` `+a.reduce((t,n)=>t+n)    Calculate the total and add a space
 ].map((_,i)=>a.reduce((c,n)=>  For each column
  c-n[i],90+t[i])               Subtract the column from the total
  %10||` `),                    Deduce the carry that was needed
  a=a.map(n=>                   For each input value
   (` `.repeat(l=t.length)+n)   Pad to the length of the total
    .slice(-l))                 Remove excess padding
 ).join``,                      Join the carries together
 ...a,                          Append the padded input values
 `-`.repeat(l),                 Append the dividing line
 t].join`\n`                    Append the total and join together
  .replace(/ (?=.*\n-)/,`+`)    Insert the + on the line above the -

캐리 계산 접두어 총 숫자를 고려하여 작동 90해당 열의 모든 입력 값의 숫자를 감산하고, 그 결과를 모듈로 10 복용 (접두사가 90아닌 9그래서 선두 칼럼 빈 반송 공간을 생성하는 것이있다.)

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.