void hertConvert(int number, int n) {
int temp;
Stack hertStack = stackInit();
while((temp = number % n) != 0) {
push(hertStack, temp);
number /= n;
}
while(isEmpty(hertStack)) {
printf("%d", getTop(hertStack));
pop(hertStack);
}
}