题解列表
1085: A+B for Input-Output Practice (I)
摘要:```csharp
#include
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)cout……
密码破译题解(钻程序漏洞)(最简洁)(空间最小)(C++版)
摘要:解题思路:黑盒测试,只需猜中测试点即可。参考代码:#include<iostream>using namespace std;int main(){printf("%s","Glmre");}……
1251: 统计字母个数
摘要:```cpp
#include
using namespace std;
int a[123];
int main()
{
string s;
int l=0,sum=0……
python最大配对简单解法
摘要:B=[]n=int(input())A=list(map(int,input().split()))A.sort() #正序排序(小到大)b=list(map(int,input().split()……
使用选择法排序字符串
摘要:```c
#include
#include
int main()
{
char a[3][100];
for(int i=0;i……
判断一个数能否同时被3和5整除
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x; scanf("%d",&x); if(x%3==0&&x%5==0) printf("Y……
递归写法,分子分母拆分成2组斐波那锲数列
摘要:#include<stdio.h>
int Fun(int n)
{
if (n==1)
{
return 1;
}
if (n==2)
{
return 2;
……