E - Soroban


You know that Japan is the country with almost the largest 'electronic devices per person' ratio. So you might be quite surprised to find out that the primary school in Japan teaches to count using a Soroban — an abacus developed in Japan. This phenomenon has its reasons, of course, but we are not going to speak about them. Let's have a look at the Soroban's construction.

Soroban consists of some number of rods, each rod contains five beads. We will assume that the rods are horizontal lines. One bead on each rod (the leftmost one) is divided from the others by a bar (the reckoning bar). This single bead is called go-dama and four others are ichi-damas. Each rod is responsible for representing a single digit from 0 to 9. We can obtain the value of a digit by following simple algorithm:

  • Set the value of a digit equal to 0.
  • If the go-dama is shifted to the right, add 5.
  • Add the number of ichi-damas shifted to the left.

Thus, the upper rod on the picture shows digit 0, the middle one shows digit 2 and the lower one shows 7. We will consider the top rod to represent the last decimal digit of a number, so the picture shows number 720.

Write the program that prints the way Soroban shows the given number n.

Input

The first line contains a single integer n (0 ≤ n < 109).

Output

Print the description of the decimal digits of number n from the last one to the first one (as mentioned on the picture in the statement), one per line. Print the beads as large English letters 'O', rod pieces as character '-' and the reckoning bar as '|'. Print as many rods, as many digits are in the decimal representation of number n without leading zeroes. We can assume that number 0 has no leading zeroes.

Example
Input
2
Output
O-|OO-OO
Input
13
Output
O-|OOO-O
O-|O-OOO
Input
720
Output
O-|-OOOO
O-|OO-OO
-O|OO-OO

题意及其解题过程:给一个数(用字符串表示),用上图表示法按照从上到下(代表个位十位百位千位····)分别输出。把0-9用上图表示法表示出来然后输出即可。

#include"stdio.h"
#include"string.h"
#include"stdlib.h"
#include"math.h"
#include"algorithm"
using namespace std;
int k;
int main()
{
	int a,i,j,n;
	char xx[11];
	while(~scanf("%s",xx))
	{
		n=strlen(xx);
		//printf("%d\n",n);
		for(i=n-1;i>=0;i--)
		{
			//printf("xx[%d] = %c\n",i,xx[i]);
			if(xx[i]=='0')
			{
				printf("O-|-OOOO\n");
			}
			else if(xx[i]=='1')
			{
				printf("O-|O-OOO\n");
			}
			else if(xx[i]=='2')
			{
				printf("O-|OO-OO\n");
			}
			else if(xx[i]=='3')
			{
				printf("O-|OOO-O\n");
			}
			else if(xx[i]=='4')
			{
				printf("O-|OOOO-\n");
			}
			else if(xx[i]=='5')
			{
				printf("-O|-OOOO\n");
			}
			else if(xx[i]=='6')
			{
				printf("-O|O-OOO\n");
			}
			else if(xx[i]=='7')
			{
				printf("-O|OO-OO\n");
			}
			else if(xx[i]=='8')
			{
				printf("-O|OOO-O\n");
			}
			else if(xx[i]=='9')
			{
				printf("-O|OOOO-\n");
			}
		}
	}
	return 0;
} 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值