摘要: 1346. 回文平方 #include <iostream> #include <algorithm> #include <cstring> using namespace std; char get(int x) // 将x转化为b进制 { if(x <= 9) return x + '0'; r 阅读全文
posted @ 2022-04-18 22:11 Tshaxz 阅读(25) 评论(0) 推荐(0) 编辑
Language: HTML