2863: 删除单词后缀 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; int …… 题解列表 2024年07月14日 0 点赞 0 评论 220 浏览 评分:0.0
题解 2861: 验证子串 摘要:```cpp #include using namespace std; typedef long long ll; int main() { string s,a; …… 题解列表 2024年07月14日 1 点赞 0 评论 159 浏览 评分:0.0
题解 2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){string s,s1;cin>>s>>s1;if(s1.f…… 题解列表 2024年07月14日 0 点赞 0 评论 116 浏览 评分:0.0
2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e7;char…… 题解列表 2024年07月14日 0 点赞 0 评论 130 浏览 评分:0.0
2861: 验证子串 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; int …… 题解列表 2024年07月14日 0 点赞 0 评论 117 浏览 评分:0.0
题解 2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s,s1; cin>>s>>s1; if(s…… 题解列表 2024年07月14日 0 点赞 0 评论 112 浏览 评分:0.0
2860: 字符串判等 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; int …… 题解列表 2024年07月14日 0 点赞 0 评论 163 浏览 评分:9.9
题解 2860: 字符串判等 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s,s1="",ss,ss1=""; …… 题解列表 2024年07月14日 0 点赞 0 评论 192 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题7.3 摘要:解题思路和注意事项::1、要输入3×3的矩阵,我们很容易想到要先定义一个二维数组,定义格式为arr[3][3];2、定义之后就用for循环输入矩阵,要注意数组的下表是从0开始,且不能超过3;3、主对角…… 题解列表 2024年07月14日 0 点赞 0 评论 246 浏览 评分:9.9
高精度计算用Python爽到爆 摘要:from decimal import Decimal, getcontext # 设置小数点后的精度 getcontext().prec = 500 # 输入两个浮点数并转换为Decimal类…… 题解列表 2024年07月14日 0 点赞 0 评论 164 浏览 评分:0.0