本文主要是介绍spy——C - Time,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
DescriptionDigital 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:
_ _ _ _ _ _ _ _
| _| _||_||_ |_ ||_||_|| |
||_ _| | _||_| ||_| _||_|
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <string>
using namespace std;
string str1[11]={" _ "," "," _ "," _ "," "," _ "," _ "," _ "," _ "," _ "};
string str2[11]={"| |"," |"," _|"," _|","|_|","|_ ","|_ "," |","|_|","|_|"};
string str3[11]={"|_|"," |","|_ "," _|"," |"," _|","|_|"," |","|_|"," _|"};
int main()
{int a,b,c,d;while(scanf("%d%d%d%d",&a,&b,&c,&d)!=EOF){cout<<str1[a]<<str1[b]<<str1[c]<<str1[d]<<endl;cout<<str2[a]<<str2[b]<<str2[c]<<str2[d]<<endl;cout<<str3[a]<<str3[b]<<str3[c]<<str3[d]<<endl;} return 0;
}
这篇关于spy——C - Time的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!