forked from joannakasprzak/lab1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
40 lines (36 loc) · 990 Bytes
/
main.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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
char **charSquare(int n);
void drawCharSquare(char **square, int n);
int main(int argc, char **argv)
{
int n;
if(argc > 1)
{
n = atoi(argv[1]);
if(argc > 2)
srand(atoi(argv[2]));
drawCharSquare(charSquare(n), n);
}
return 0;
}
char **charSquare(int n)
{
char **square = new char*[n];
for(int i(0); i < n * n; i++)
{
if(i < n)
square[i] = new char[n]; //nie wiedzialem czy "wypelnianie" jest polaczone z "tworzeniem" i czy moge uzyc osobnej petli for(;;) do stworzenia 2 wymiaru tablicy
square[(i / n) % n][i % n] = rand() % 26 + 97; // - (32 * rand() % 2); dla generatora wielkich i malych liter
}
return square;
}
void drawCharSquare(char **square, int n)
{
for(int i(0); i < n * n; i++)
printf("%c%c",
(i % n == 0) ? '\n' : ' ' ,
square[(i / n) % n][i % n]);
return;
}