字符串编辑 略微麻烦 摘要:解题思路:分功能解决注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; …… 题解列表 2023年02月01日 0 点赞 0 评论 262 浏览 评分:9.9
字符串编码 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<string>using namespace std;int main() { string s; cin >> …… 题解列表 2023年02月01日 0 点赞 0 评论 255 浏览 评分:0.0
1951 求平方和 题解 摘要:只要用a2+b22就行了参考代码一:#includeusing namespace std;int main(){ int a,b; cin>>a>>b; cout<<a*a+b*b…… 题解列表 2023年02月01日 0 点赞 0 评论 444 浏览 评分:9.9
1246: 第几天 摘要:```cpp #include using namespace std; int arr[12]={31,28,31,30,31,30,31,31,30,31,30,31},sum=0; in…… 题解列表 2023年02月01日 0 点赞 0 评论 635 浏览 评分:7.3
1243: 破解平方数 摘要:```cpp #include #include using namespace std; typedef long long ll; int t,m,r[101]; ll DFS(int…… 题解列表 2023年02月01日 0 点赞 0 评论 332 浏览 评分:9.9
巧妙运用'\0' 摘要:```c #include #include #include int main() { int n,flag=0; char a[100], b[100]; gets_s(a)…… 题解列表 2023年02月01日 0 点赞 0 评论 498 浏览 评分:9.9
1242: 矩阵转置 摘要:```cpp #include using namespace std; int a[1001][1001]; int main() { int n; cin>>n; …… 题解列表 2023年02月01日 0 点赞 0 评论 235 浏览 评分:9.9
1241: 盐水的故事 摘要:```cpp #include using namespace std; int main() { int VUL,D,time=0,count=1; cin>>VUL>>…… 题解列表 2023年02月01日 0 点赞 0 评论 274 浏览 评分:9.9
最大值和最小值的差 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[10001];int main(){ int n,i,max,min; scanf("%d",&n); …… 题解列表 2023年02月01日 0 点赞 0 评论 882 浏览 评分:9.9
1955: 贷款计算 摘要:```cpp #include using namespace std; int main() { int total,month,money; float rate; …… 题解列表 2023年02月01日 0 点赞 0 评论 377 浏览 评分:9.3