Time(string类简单存储)

本文介绍了一种使用3x3字符矩阵来表示数字的方法,并通过一个简单的C++程序演示了如何将四位数的时间显示为数字钟格式。每个数字由三行组成,每行四个字符,包括横线'_'、竖线'|'和空格。示例输入输出展示了如何用这种格式表示不同的时间。

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

Digital clock use 4 digits to express time, each digit is described by 3*3 characters (including”|”,”_”and” “).now given the current time, please tell us how can it be expressed by the digital clock.
Input
There are several test cases. 
Each case contains 4 integers in a line, separated by space. 
Proceed to the end of file.
Output
For each test case, output the time expressed by the digital clock such as Sample Output.
Sample Input
1 2 5 6
2 3 4 2
Sample Output
    _  _  _ 
  | _||_ |_ 
  ||_  _||_|
 _  _     _ 
 _| _||_| _|
|_  _|  ||_ 
Hint
The digits showed by the digital clock are as follows:
   _  _     _  _  _  _  _  _ 
 | _| _||_||_ |_   ||_||_|| |

||_ _| | _||_| ||_| _||_|

代码范例

int main()
{
    int a,b,c,d;
    string s[10]= {" _ ","   "," _ "," _ ","   "," _ "," _ "," _ "," _ "," _ "};
    string t[10]= {"| |","  |"," _|"," _|","|_|","|_ ","|_ ","  |","|_|","|_|"};
    string w[10]= {"|_|","  |","|_ "," _|","  |"," _|","|_|","  |","|_|"," _|"};
    while(cin>>a>>b>>c>>d)
    {
        cout<<s[a]<<s[b]<<s[c]<<s[d]<<endl;
        cout<<t[a]<<t[b]<<t[c]<<t[d]<<endl;
        cout<<w[a]<<w[b]<<w[c]<<w[d]<<endl;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值