题解列表

筛选

1172: 计算两点间的距离

摘要:解题思路:直角三角形,三条边的关系:两直边平方和等于斜边平方注意事项:参考代码:while True:     try:         x1,y1,x2,y2=map(int,input().s……

编写题解 1171: 蟠桃记

摘要:解题思路:注意事项:参考代码:while True:     try:         n=int(input())         ls=[1]         for i in&nb

C++ 运行易错点

摘要:解题思路:      一元二次方程                   ax²+bx+c=0   (a≠0)        &n

动态规划解决清楚易懂

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class dp解决01背包问题 { public static void main(String[] a……