solution.md 1.1 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 7段码
F
fix bug  
feilong 已提交
2

3
**题目描述**
F
fix bug  
feilong 已提交
4

每日一练社区's avatar
每日一练社区 已提交
5
小蓝要用七段码数码管来表示一种特殊的文字。  
每日一练社区's avatar
每日一练社区 已提交
6

每日一练社区's avatar
每日一练社区 已提交
7
![七段码](https://img-blog.csdnimg.cn/2020110916441977.png#pic_left)   
每日一练社区's avatar
每日一练社区 已提交
8

每日一练社区's avatar
每日一练社区 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
上图给出了七段码数码管的一个图示,数码管中一共有 7 段可以发光的二极管,分别标记为 a, b, c, d, e, f, g。

小蓝要选择一部分二极管(至少要有一个)发光来表达字符。在设计字符的表达时,要求所有发光的二极管是连成一片的。

* 例如:b 发光,其他二极管不发光可以用来表达一种字符。

* 例如:c 发光,其他二极管不发光可以用来表达一种字符。

这种方案与上一行的方案可以用来表示不同的字符,尽管看上去比较相似。

* 例如:a, b, c, d, e 发光,f, g 不发光可以用来表达一种字符。

* 例如:b, f 发光,其他二极管不发光则不能用来表达一种字符,因为发光的二极管没有连成一片。

请问,小蓝可以用七段码数码管表达多少种不同的字符?


## 答案
F
fix bug  
feilong 已提交
27

每日一练社区's avatar
每日一练社区 已提交
28
```c
每日一练社区's avatar
每日一练社区 已提交
29
80
每日一练社区's avatar
每日一练社区 已提交
30 31 32
```
## 选项

F
fix bug  
feilong 已提交
33

每日一练社区's avatar
每日一练社区 已提交
34
### A
F
fix bug  
feilong 已提交
35

每日一练社区's avatar
每日一练社区 已提交
36
```c
每日一练社区's avatar
每日一练社区 已提交
37
90
每日一练社区's avatar
每日一练社区 已提交
38 39 40
```

### B
F
fix bug  
feilong 已提交
41

每日一练社区's avatar
每日一练社区 已提交
42
```c
每日一练社区's avatar
每日一练社区 已提交
43
70
每日一练社区's avatar
每日一练社区 已提交
44 45 46
```

### C
F
fix bug  
feilong 已提交
47

每日一练社区's avatar
每日一练社区 已提交
48
```c
每日一练社区's avatar
每日一练社区 已提交
49
78
每日一练社区's avatar
每日一练社区 已提交
50
```