题解列表
蓝桥杯基础练习-十进制转十六进制
摘要:
```Java
import java.util.Scanner;
public class Main {
public static void main(String[] a……
题解 1172: 计算两点间的距离
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x1,y1,x2,y2,length; while(scanf……
题解 1173: 计算球体积
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,V; while(~scanf("%lf",&x)) ……
1043: [编程入门]三个数字的排序
摘要:解题思路: 穷举, 把所有情况都列出进行一波暴击试验从而得出答案参考代码:#include <stdio.h>
int main()
{
int a, b, c;
scanf("%d%……
编写题解 1115: DNA(python)
摘要:解题思路:注意事项:参考代码:N = int(input())for i in range(N): m,n = map(int,input().split()) a = (m+1) // ……
1009,好懂的方法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c,d,e,f,g; scanf("%d",&a);……
1481: 蓝桥杯算法提高VIP-剪刀石头布(python)
摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())if a == b: print("0")elif (a == 0 and b == 2) or (a ==……
1014,好懂的方法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n;long long s=0,b=1; scanf("%d",&n); for(……