1561: (More) Multiplication (similar)

Source: Internet
Author: User

1561: (More) Multiplication (similar)

1561: (More) MultiplicationTime Limit: 1 Sec Memory Limit: 128 MB
Submit: 86 Solved: 48
[Submit] [Status] [Web Board] DescriptionEducators are always coming up with new ways to teach math to students. in 2011, an educational software company, All Computer Math (ACM), developed an application to display products in a traditional grade school math format. ACM is now working on an updated version of the software that will display results in a lattice format that some students find to be easier when multiplying larger numbers.

An example wocould be when multiplying 345*56 = 19320 as given below, using a lattice grid with 2 rows and 3 columns, which appears inside a surrounding frame:

+ --------------- +
| 3 4 5 |
| + --- + |
| 1/| 2/| 2/|
|/| 5 |
| 1 |/5 |/0 |/5 |
| + --- + |
|/| 1/| 2/| 3/|
|/| 6 |
| 9 |/8 |/4 |/0 |
| + --- + |
|/3/2/0 |
+ --------------- + The first operand, 345, is displayed abve the top of the grid with each digit centered horizontally abve its column of the grid, and the second operand, 56, is displayed along the righthand side with each digit centered vertically at the center of its row in the grid. A single cell of the grid, such as + --- +
| 3/|
|/|
|/0 |
+ --- + Represents the product of the digit of the first operand that is abve its column and the digit of the second operand that is to the right of its row. in our example, this cell represents the product 5 times 6 = 30 that results when multiplying the 5 in 345 and the 6 in 56. note that the 10's digit of that product is placed in the upper left portion of this cell and the 1's digit in the lower right.

The overall product is then computed by summing along the diagonals in the lattice that represent the same place values in the result. For example, in our first problem the product 19320 was computed:

1's digit = 0
10's digit = 5 + 3 + 4 = 12, thus 2 with a carry of 1
100's digit = (1 carry) + 2 + 0 + 2 + 8 = 13, thus 3 with a carry of 1
1000's digit = (1 carry) + 2 + 5 + 1 = 9
10000's digit = 1
The resulting product is placed with the one's digit below the grid at the far right and, depending on its length, with the most significant digits wrapped around the left side of the grid. each digit of the final product appears perfectly aligned with the corresponding diagonal summands.
To provide an aesthetic view, we use a series of minus (-) characters for horizontal lines, pipe (|) characters for vertical lines, and slash (/) characters for diagonal lines. furthermore, we use a plus (+) character wherever a horizontal and vertical line meet. each multiplication lattice is subsequently "boxed" by an outer border. there is a row containing the first operand which is between the topmost border and the top line of the grid, and a row between the bottom of the grid and the bottom border, which contains some portion of the resulting product. there is one column between the leading | and the left edge of the inner grid, which may contain in a portion of the resulting product, and one column after the right edge of the inner grid but before the rightmost | border, which contains the second operand. if the product is not long enough to wrap around the bottom-left corner, the column between the left border and the left edge of the grid will containing only spaces. (See the later example of 3x3 .)

Leading zeros shoshould be displayed within lattice grid cells, but leading zeros shoshould never be displayed in the product, nor shoshould there ever be a slash (/) character prior to the leading digit of the product. for example, consider the product of 12*27 = 324 below:

+ ----------- +
| 1 2 |
| + --- + |
| 0/| 0/|
|/| 2 |
|/2 |/4 |
| + --- + |
| 0/| 1/|
|/| 7 |
| 3 |/7 |/4 |
| + --- + |
|/2/4 |
+ ----------- + Note that in the top-right grid of the lattice, the product 2*2 = 04 is displayed with the zero for the tens digit. however, there is no thousands digit displayed in the product 324, nor is there any slash displayed above the digit 3 in that product.

 

Input

The input contains one or more tests. each test contains two positive integers, A and B, such that 1 ≤ A ≤ 9999 and 1 ≤ B ≤ 9999. the last data set will be followed by a line containing 0 0.

Output

For each data set, produce the grid that corresponds strates how to multiply the two numbers using the lattice multiplication technique.

Sample Input
345 5612 271 689999 73 30 0
Sample Output
+---------------+|   3   4   5   || +---+---+---+ || |1 /|2 /|2 /| || | / | / | / |5||1|/ 5|/ 0|/ 5| || +---+---+---+ ||/|1 /|2 /|3 /| || | / | / | / |6||9|/ 8|/ 4|/ 0| || +---+---+---+ ||/ 3 / 2 / 0    |+---------------++-----------+|   1   2   || +---+---+ || |0 /|0 /| || | / | / |2|| |/ 2|/ 4| || +---+---+ || |0 /|1 /| || | / | / |7||3|/ 7|/ 4| || +---+---+ ||/ 2 / 4    |+-----------++-------+|   1   || +---+ || |0 /| || | / |6|| |/ 6| || +---+ || |0 /| || | / |8||6|/ 8| || +---+ ||/ 8    |+-------++-------------------+|   9   9   9   9   || +---+---+---+---+ || |6 /|6 /|6 /|6 /| || | / | / | / | / |7||6|/ 3|/ 3|/ 3|/ 3| || +---+---+---+---+ ||/ 9 / 9 / 9 / 3    |+-------------------++-------+|   3   || +---+ || |0 /| || | / |3|| |/ 9| || +---+ ||  9    |+-------+
HINT

 

The tables must be formatted precisely as outlined by the rules and examples provided. Reset that involve solely errant whitespace will be categorized as Presentation Error; all other errors will be reported as Wrong Answer.

 

#include
 
  const int N =100;int main(){    int A,B,C,a[N],b[N],c[N],lenA,lenB,lenC,flag;    while(scanf("%d%d",&A,&B)>0)    {        if(A==0&&B==0)            break;        C=A*B;        lenA=lenB=lenC=0;        while(A)        {            a[++lenA]=A%10; A/=10;        }        while(B)        {            b[++lenB]=B%10; B/=10;        }        while(C)        {            c[++lenC]=C%10; C/=10;        }        for(int i=1,j=lenA;i<j;i++,j--) {="" a="a[i];a[i]=a[j];a[j]=A;" }="" flag="lenC;" printf("+-");="" for(int="" i="1;i<=lena;i++) d=" ">0;i--)        for(int j=1;j<=4;j++)        {            printf("|");            if(j!=2)            {                if(j!=4||lenC-lenA
  
   i)printf("/");                else printf(" ");            }            if(j==1)            {                printf("+");                for(int e=1;e<=lenA;e++)                    printf("---+");                printf(" |\n");            }            else if(j==2)            {                for(int e=1;e<=lenA;e++)                    printf("|%d /",(a[e]*b[i])/10);                printf("| |\n");            }            else if(j==3)            {                for(int e=1;e<=lenA;e++)                    printf("| / ");                printf("|%d|\n",b[i]);            }            else            {                for(int e=1;e<=lenA;e++)                    printf("|/ %d",(a[e]*b[i])%10);                printf("| |\n");            }        }        printf("| +");        for(int e=1;e<=lenA;e++)            printf("---+");                printf(" |\n");                        printf("|");        if(flag>lenA)            printf("/");        else printf(" ");        while(lenC)        {            printf(" %d ",c[lenC--]);            if(lenC)  printf("/");        }        printf("   |\n");        printf("+-");        for(int i=1;i<=lenA;i++)            printf("----");        printf("--+\n");    }}
  
  
  
 


<= Lena; I ++) d = ""> <= lena; I ++) d = "">

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.