Lysss_
Lysss_
全部文章
分类
未归档(1)
题解(2)
归档
标签
去牛客网
登录
/
注册
Lysss_ NowCoder Blog
2023-12-11
全部文章
(共2篇)
题解 | #回型矩阵#
using namespace std; int a[20][20]; int main() { int n; cin >> n; int x = 1; int i = 0; int j = 0; while(x <= n * n) ...
2024-03-16
0
164
题解 | #字符统计#
#include <cctype> using namespace std; int main() { int Letters = 0,Digits = 0,Others = 0; char a; cin.get(a); while (a != '?') ...
2024-03-02
0
193