wzq_hwx
wzq_hwx
全部文章
题解
归档
标签
去牛客网
登录
/
注册
wzq_hwx的博客
全部文章
/ 题解
(共53篇)
题解 | #杨辉三角的变形#
#include <iostream> using namespace std; int main() { int input; int result; int tmp[4] = {2,3,2,4}; while(cin>>input) ...
C++
朴实派
2021-07-28
0
457
题解 | #字符逆序#
#include <iostream> #include <string> using namespace std; int main() { //input string input; getline(cin,input); for(int...
c++
朴实派
2021-07-23
3
560
题解 | #公共子串计算#
#include <iostream> #include <string> using namespace std; int main() { string str1, str2; cin >> str1 >> str2; s...
C++
朴实派
2021-07-23
4
826
首页
上一页
1
2
3
4
5
6
下一页
末页