HDU 1332 LC-Display

本文介绍了一个用于在计算机上模拟LC显示屏风格显示数字的程序。该程序能够根据输入的大小参数,以特定格式输出由横线和竖线组成的数字形状,适用于各种尺寸的显示需求。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Problem Description
A friend of you has just bought a new computer. Until now, the most powerful computer he ever used has been a pocket calculator. Now, looking at his new computer, he is a bit disappointed, because he liked the LC-display of his calculator so much. So you decide to write a program that displays numbers in an LC-display-like style on his computer.
 
Input
The input contains several lines, one for each number to be displayed. Each line contains two integers s, n (1 <= s <= 10, 0 <= n <= 99 999 999), where n is the number to be displayed and s is the size in which it shall be displayed.
The input file will be terminated by a line containing two zeros. This line should not be processed.

Output
Output the numbers given in the input file in an LC-display-style using s ``-'' signs for the horizontal segments and s ``|'' signs for the vertical ones. Each digit occupies exactly s+2 columns and 2s+3 rows. (Be sure to fill all the white space occupied by the digits with blanks, also for the last digit.) There has to be exactly one column of blanks between two digits.
Output a blank line after each number. (You will find a sample of each digit in the sample output.)
 
Sample Input
2 12345
3 67890
0 0
 
Sample Output
 
 
Answer

#include <iostream>
#include <string>
using namespace std;
int main()
{
 int n,h,w,len,i,j;
 string s;
 while(cin>>n>>s)
 {  
  if(n==0 && s=="0")
   break;
  h=n*2+3;
  w=n+2; 
  len=s.size();
  for(i=1;i<=h;i++)
  {
   for(j=0;j<len;j++)
   {
    if( ( (s[j]=='2'||s[j]=='3'||s[j]=='5'||s[j]=='6'||s[j]=='8'||s[j]=='9')&&(i==1||i==h||i==(h+1)/2) )
     || ( s[j]=='4'&&i==(h+1)/2 ) || ( s[j]=='7'&&i==1 ) || ( s[j]=='0'&&(i==1||i==h) ) )
     cout<<' '+string(w-2,'-')+' ';  // 横
    else
     if( ( s[j]=='1'&&(i==1||i==h||i==(h+1)/2) ) || ( s[j]=='4'&&(i==1||i==h) )
      || ( s[j]=='7'&&(i==h||i==(h+1)/2) ) || ( s[j]=='0'&&i==(h+1)/2 ) )
      cout<<string(w,' ');   // 横
     else
      if( (s[j]=='1'||s[j]=='3'||s[j]=='7')&&(i!=1&&i!=(h+1)/2&&i!=h)
       || ( s[j]=='2'&&(i>1&&i<(h+1)/2) ) || ((s[j]=='5'||s[j]=='9'||s[j]=='4')&&(i<h&&i>(h+1)/2)) )
       cout<<string(w-1,' ')+'|';   // 竖 右
      else
       if( (s[j]=='2'&&(i<h&&i>(h+1)/2)) || ((s[j]=='5'||s[j]=='6')&&(i>1&&i<(h+1)/2)) )
        cout<<'|'+string(w-1,' ');   // 竖 左
       else
        cout<<'|'+string(w-2,' ')+'|';   // 竖 左右
    if(j!=len-1)
     cout<<" ";  // 两数字间空格
   }
   cout<<endl;   
  }
  cout<<endl;
 }
 return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值