摘要: #include #include struct bign { int d[21], len; bign() { memset(d, 0, sizeof(d)); len = 0; } }; bign change(char str[]) { bign a; a.len = strlen(str); for (int... 阅读全文
posted @ 2018-06-16 17:24 Cirno-9 阅读(100) 评论(0) 推荐(0)
摘要: #include #include struct bign { int d[1010], len; bign() { memset(d, 0, sizeof(d)); len = 0; } }; bign change(char str[]) { bign a; a.len = strlen(str); for (... 阅读全文
posted @ 2018-06-16 16:15 Cirno-9 阅读(152) 评论(0) 推荐(0)