摘要: ```c++ #include #include #include #include using namespace std; void convert(int in[], int len, int out[],int &ks, int m, int n) { for (int i = 0; i =0 ; --j) { printf("%d",out[j]); } printf("\n"); } 阅读全文
posted @ 2020-02-29 23:44 ailinal 阅读(114) 评论(0) 推荐(0)
摘要: ```c++ #include #include #include using namespace std; int main() { int m, n; while (scanf("%d", &m) != EOF) { scanf("%d", &n); char s[1000]; scanf("%s", s); int ns = strlen(s); int a[1000]; for (int 阅读全文
posted @ 2020-02-29 23:22 ailinal 阅读(153) 评论(0) 推荐(0)
摘要: ```c++ #include #include #include using namespace std; struct big_number { int d[10010], len; big_number() { memset(d, 0, sizeof(d)); len = 0; } }; big_number change(char s[]) { big_number ans; int le 阅读全文
posted @ 2020-02-29 22:29 ailinal 阅读(176) 评论(0) 推荐(0)