题解列表
小明A+B(简单易懂)
摘要:解题思路:对于每一组测试数据,最好先将两个加数相加然后对于100求余,就不难得到输出结果了。注意事项:参考代码:#include<stdio.h>int main(){ int n; int a……
DNA(不用数组也可以写)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int m,n,i,j,num; scanf("%d",&num); while(num--) { s……
2082: 蓝桥杯基础练习-十六进制转十进制
摘要:解题思路:注意事项:参考代码:n = input()
def to_ten(x):
dic = {'A':10,'B':11,'C':12,……
蓝桥杯算法提高VIP-交换Easy
摘要:解题思路: 技巧:根据输入N的大小初始化数组。注意事项:可以封装成swap函数,由于简单,罢了。参考代码:#include<iostream>
using namespace std;
int m……
C语言考试练习题_排列(C++暴力)
摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main() { int a[4],……
蓝桥杯算法提高VIP-一元一次方程
摘要:解题思路: 思路:解方程注意事项:参考代码:#include<iostream>
#include<iomanip>
using namespace std;
int main()……
2085: 蓝桥杯算法提高VIP-P1003
摘要:解题思路:注意事项:参考代码:a = list(input().strip().split())
b = list(input().strip().split())
for i in a:
……