Loading

摘要: 杨辉三角形 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 阅读(169) 评论(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 阅读(146) 评论(0) 推荐(0) 编辑
摘要: http://lx.lanqiao.cn/problem.page?gpid=T48 #include<iostream> using namespace std; int main() { int sum; cin >> sum; int x1, x2, x3, x4, x5, x6; for ( 阅读全文
posted @ 2021-01-14 20:03 longwind7 阅读(54) 评论(0) 推荐(0) 编辑
摘要: http://lx.lanqiao.cn/problem.page?gpid=T49 #include<iostream> #include<string.h> using namespace std; char inttochar(int x) { if (x >= 0 && x <= 9) re 阅读全文
posted @ 2021-01-14 19:42 longwind7 阅读(117) 评论(0) 推荐(0) 编辑
摘要: http://lx.lanqiao.cn/problem.page?gpid=T50 最开始犯了一个错误,用了strlen()函数但是忘了加头文件<string.h> 然后提交这个 #include<iostream> #include<string.h> using namespace std; 阅读全文
posted @ 2021-01-13 23:08 longwind7 阅读(79) 评论(1) 推荐(0) 编辑
摘要: https://www.dotcpp.com/oj/problem1094.html getchar()在这里用来捕获回车,先输入n的值,然后敲回车,缓冲区会有一个回车,getline()会读入,用getchar()读入回车,清空缓冲区。 #include<iostream> #include<st 阅读全文
posted @ 2021-01-10 22:15 longwind7 阅读(93) 评论(0) 推荐(0) 编辑