-
Notifications
You must be signed in to change notification settings - Fork 0
/
015-nested-cycles.cpp
45 lines (36 loc) · 1.1 KB
/
015-nested-cycles.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Napiste program ktory vypise nasledujuci utvar pre n=3
// *
// **
// ***
// Pocet hviezdiciek v riadku rastie o + 1 s kazdym riadkom
#include <stdio.h>
void draw_triangel(int n); // Ak chceme tak vieme telo funkcie specifikovat aj pod funkciou main. Musime vsak uviest jej deklaracnu cast nad nou.
int main() {
int row, column, n = 10;
for (row = 1; row <= n; row++) {
for (column = 1; column <= row; column++) {
printf("*");
}
printf("\n");
}
draw_triangel(3);
return 1;
}
// Domaca Uloha
// Spravte iste s tym ze cely program bude vo funkcii drav triangle. Tato funkcia bude mat vstupny parameter cislo n
// Vystupom tejto funkcie nebude nic. Funkcia len vypise trojuholnik
void draw_triangel(int n) {
int row, column;
for (row = 1; row <= n; row++) {
for (column = 1; column <= row; column++) {
printf("*");
}
printf("\n");
}
}
// DOMACA Uloha napiste kod ktory bude pisat taku istu piramidu ale namiesto hviezdiciek tam budu cisla, ktore budu postupne stupat
// napr pre n=4
// 1
// 1 2
// 1 2 3
// 1 2 3 4