题解列表
题解 2857: 加密的病历单
摘要: #include
using namespace std;
char a[200],b[200];
int n,m;
int main(){
……
最大公约数与最小公倍数
摘要:
{
double meter,sum=0,s=0;
……
自定义函数处理最大公约数与最小公倍数
摘要:解题思路:先去求最大公约数,然后求最小公倍数注意事项:最小公倍数=两数相乘/最大公约数参考代码:#include<bits/stdc++.h>using namespace std;int da(in……
DSTJZ-平均值计算
摘要:参考代码:#include<iostream>
using namespace std;
int main()
{
int arr[10];
int sum = 0;
……