mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-28 05:26:29 +08:00
Merge branch 'master' of github.com:krahets/hello-algo
This commit is contained in:
commit
fc8291494f
1 changed files with 10 additions and 1 deletions
|
@ -57,7 +57,11 @@ comments: true
|
||||||
=== "C++"
|
=== "C++"
|
||||||
|
|
||||||
```cpp title=""
|
```cpp title=""
|
||||||
|
/* 使用多种「基本数据类型」来初始化「数组」 */
|
||||||
|
int numbers[5];
|
||||||
|
float decimals[5];
|
||||||
|
char characters[5];
|
||||||
|
bool booleans[5];
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "Python"
|
=== "Python"
|
||||||
|
@ -88,6 +92,11 @@ comments: true
|
||||||
=== "C"
|
=== "C"
|
||||||
|
|
||||||
```c title=""
|
```c title=""
|
||||||
|
/* 使用多种「基本数据类型」来初始化「数组」 */
|
||||||
|
int numbers[10];
|
||||||
|
float decimals[10];
|
||||||
|
char characters[10];
|
||||||
|
bool booleans[10];
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue