摘要:
杨辉三角形 http://lx.lanqiao.cn/problem.page?gpid=T10 #include<iostream> using namespace std; int main() { int x[34][34] = { 0 }; for (int i = 0; i < 34; i 阅读全文
posted @ 2021-01-17 15:56
longwind7
阅读(170)
评论(0)
推荐(0)
摘要:
回文数 http://lx.lanqiao.cn/problem.page?gpid=T47 #include<iostream> using namespace std; int main() { int x1, x2, x3, x4; for (int i = 1000; i < 10000; 阅读全文
posted @ 2021-01-17 15:10
longwind7
阅读(149)
评论(0)
推荐(0)