#include <stdio.h> #include <stdlib.h> #include <string.h> #define max 1000 #define row 100 #define col 1001 //2021/7/3 - 17:50 //2021/7/3 - 17:53 void itoa_10_rvs(char* s, int v) { char cvt[] = {'0', '1', '2', '3','4','5','6','7','8','9'}; int i = 0; if (v == 0) ...