https://github.com/adnksharp/c-p-pyramid-number
Pirámides de números en C
https://github.com/adnksharp/c-p-pyramid-number
c-language
Last synced: 12 months ago
JSON representation
Pirámides de números en C
- Host: GitHub
- URL: https://github.com/adnksharp/c-p-pyramid-number
- Owner: adnksharp
- Created: 2022-07-28T14:13:12.000Z (almost 4 years ago)
- Default Branch: base
- Last Pushed: 2022-07-28T14:13:39.000Z (almost 4 years ago)
- Last Synced: 2024-12-20T16:20:38.765Z (over 1 year ago)
- Topics: c-language
- Language: C
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Number pyramid with a loop
```
1 x 9 + 1 = 10
12 x 9 + 2 = 110
123 x 9 + 3 = 1110
1234 x 9 + 4 = 11110
12345 x 9 + 5 = 111110
123456 x 9 + 6 = 1111110
1234567 x 9 + 7 = 11111110
12345678 x 9 + 8 = 111111110
123456789 x 9 + 9 = 1111111110
```
Mostrar patrones de tablas de multiplicar del 8 al 10 más números en pirámides.