题解列表
编写题解 2247: 蓝桥杯算法提高-输出三个整数的最大数
摘要:```cpp
#include
using namespace std;
int max(int a,int b,int c){
couta>>b>>c;
max(a,b,c);
r……
编写题解 1010: [编程入门]利润计算
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d,f; char s[200]; a=……
1046: [编程入门]自定义函数之数字后移
摘要:```cpp
#include
using namespace std;
int a[100];
int hy(int n,int m){
for(int i=n-m+1;im;
hy……
编写题解 1035: [编程入门]自定义函数之字符类型统计
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;void a(string s){ int sum1=0,sum2=0,sum3=0,……
编写题解 2247: 蓝桥杯算法提高-输出三个整数的最大数
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int a(int x,int y,int z){ if(x>=y&&x>=z) ……
编写题解 1806: [编程基础]输入输出练习之第二个数字
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c……
编写题解 2776: A*B问题
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout……
编写题解 1267: A+B Problem
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout……