摘要: 没有长度为8的素数 class Solution { public: bool huiwen(int x) { int a[9], cnt = 0; while(x) { int tmp = x % 10; a[cnt++] = tmp; x /= 10; } int i = 0, j = cnt 阅读全文
posted @ 2022-01-19 12:06 WTSRUVF 阅读(25) 评论(0) 推荐(0)