-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.c
146 lines (114 loc) · 3.47 KB
/
test.c
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/**
* Soubor: generate-test.c
* Datum: 2011/05/28
* Autor: Ondrej Gersl, [email protected]
* Projekt: Prevod cisla [www.joineset.com]
* Popis: Generuje testovaci data pro aplikaci nsc slouzici k prevodu mezi
* ciselnymi soustavami.
* Vystupni format: [XXXX]Z1=Z2
* Napr.: [1012222121310101]4=32 (prevod ze 4-kove do 32 soustavy)
*/
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define MIN_NUMBER_BASE 2 /**< minimalni ciselna soustava (min. je 2) */
#define MAX_NUMBER_BASE 36 /**< maximalni ciselna soustava (max. je 36) */
/**
* Kody stavu (predevsim chybovych)
*/
enum codes {
EOK = 0, /**< Vse v poradku */
EPARAM, /**< Spatne zadane parametry */
EUNKNOWN, /**< Neznama chyba */
};
/**
* Chybova hlaseni. Jejich poradi odpovida poradi konstant ve vyctu codes.
*/
const char *MSG[] = {
"OK.",
"ERROR! Bad parameters.",
"ERROR! Unknown error.",
};
/**
* Znakove zastoupeni ciselnych sad
*/
const char numbers[] = {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',
'U', 'V', 'W', 'X', 'Y', 'Z',
};
/**
* Vypise chybove hlaseni na standardni chybovy vystup.
* @param error Kod chyby z vyctu codes.
*/
void printError(int error)
{
if (error < EOK || error >= EUNKNOWN)
error = EUNKNOWN;
fprintf(stderr, "%s\n", MSG[error]);
}
/**
*
*/
char getRandomNumber(unsigned short base)
{
return numbers[rand() % base];
}
/********************************** main() **********************************/
int main(int argc, char *argv[])
{
/** Musi byt presne 3 argumenty */
if (argc != 4) {
printError(EPARAM);
return EPARAM;
}
unsigned short fromBase = 0;
unsigned short toBase = 0;
unsigned long long int countOfNumbers = 0;
srand((unsigned int) time(NULL));
/** Prevod znaku na cisla */
if (sscanf(argv[1], "%hu", &fromBase) != 1 ||
sscanf(argv[2], "%hu", &toBase) != 1 ||
sscanf(argv[3], "%llu", &countOfNumbers) != 1) {
printError(EPARAM);
return EPARAM;
}
/** Kontrola rozsahu hodnot */
if (fromBase < MIN_NUMBER_BASE || fromBase > MAX_NUMBER_BASE ||
toBase < MIN_NUMBER_BASE || toBase > MAX_NUMBER_BASE ||
countOfNumbers <= 0) {
printError(EPARAM);
return EPARAM;
}
/* Zobrazi nactene hodnoty
printf("fromBase: %u\ntoBase: %u\ncountOfNumbers: %llu\n",
fromBase, toBase, countOfNumbers);
*/
/** Vypis na vystup */
putchar('[');
/* Prvni cislo nesmi byt 0 */
char firstNumber;
do
firstNumber = getRandomNumber(fromBase);
while (firstNumber == '0');
putchar(firstNumber);
countOfNumbers--;
/* Generovani zbytku cisel */
while (countOfNumbers-- > 0)
putchar(getRandomNumber(fromBase));
printf("]%u=%u\n", fromBase, toBase);
return EOK;
}