1046: [编程入门]自定义函数之数字后移 摘要:```cpp #include using namespace std; int a[100]; int hy(int n,int m){ for(int i=n-m+1;im; hy…… 题解列表 2024年07月24日 2 点赞 0 评论 245 浏览 评分:9.9
编写题解 1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;void a(string s){ int sum1=0,sum2=0,sum3=0,…… 题解列表 2024年07月23日 0 点赞 0 评论 295 浏览 评分:0.0
编写题解 2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int a(int x,int y,int z){ if(x>=y&&x>=z) …… 题解列表 2024年07月23日 0 点赞 0 评论 380 浏览 评分:0.0
编写题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2024年07月23日 0 点赞 0 评论 1087 浏览 评分:9.9
编写题解 2776: A*B问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年07月23日 0 点赞 0 评论 195 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年07月23日 1 点赞 0 评论 585 浏览 评分:9.9
编写题解 2749: Hello, World! 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ cout << "Hello world!" << endl;…… 题解列表 2024年07月23日 0 点赞 0 评论 477 浏览 评分:9.9
2853: 字符替换 c++ (string) 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; const int N = 1e3; typedef…… 题解列表 2024年07月22日 0 点赞 0 评论 177 浏览 评分:0.0
编写题解 2853: 字符替换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string…… 题解列表 2024年07月22日 0 点赞 0 评论 192 浏览 评分:9.9
编写题解 2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月22日 0 点赞 0 评论 728 浏览 评分:9.9