#define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> void six(int n) { if (n!=0) { if(n>=5) six(n/6); pr...