2936: 简单算术表达式求值 ```cpp#includeusingnamespacestd;intjs(inta,charc,intb){if(c=='+')cout 题解列表 2024年07月25日 0 点赞 0 评论 616 浏览 评分:0.0
1157: 亲和数 ```cpp#includeusingnamespacestd;intqhs(intx,inty){inta=0,b=0;for(inti=1;i 题解列表 2024年07月25日 0 点赞 0 评论 389 浏览 评分:0.0
编写题解 2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:```cpp #include using namespace std; int max(int a,int b,int c){ couta>>b>>c; max(a,b,c); r…… 题解列表 2024年07月25日 0 点赞 0 评论 392 浏览 评分:0.0
利用数组的方法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<vector>int main() { int m = 0; cin >> …… 题解列表 2024年07月25日 0 点赞 0 评论 449 浏览 评分:0.0
编写题解 1010: [编程入门]利润计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d,f; char s[200]; a=…… 题解列表 2024年07月24日 0 点赞 0 评论 525 浏览 评分:0.0
1046: [编程入门]自定义函数之数字后移 ```cpp#includeusingnamespacestd;inta[100];inthy(intn,intm){for(inti=n-m+1;im;hy(n,m);return0;}``` 题解列表 2024年07月24日 2 点赞 0 评论 504 浏览 评分:9.9
编写题解 1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;void a(string s){ int sum1=0,sum2=0,sum3=0,…… 题解列表 2024年07月23日 0 点赞 0 评论 618 浏览 评分: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 评论 693 浏览 评分: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 评论 1876 浏览 评分: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 评论 509 浏览 评分:9.9