题解列表

筛选

不懂可评论

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ &……

不懂可评论

摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())print("%d"%(a*0.2+b*0.3+c*0.5))……

5行代码简单解决

摘要:解题思路:使用整除和除余的知识很简单注意事项:参考代码:b=int(input())d1=b//3600d2=(b%3600)//60d3=(b%3600)%60print("%d:……

简简单单的解题方法

摘要:解题思路:其实就是寻找三个数的最大公倍数,直接遍历,暴力解题注意事项:参考代码:a,b,c=map(int,input().split())foriinrange(1,30000000):&n……

不懂可评论

摘要:解题思路:注意事项:参考代码:x,y=map(int,input().strip().split())    &nbsp……

不懂可评论

摘要:解题思路:注意事项:参考代码:n,m=map(int,input().strip().split())print("%.2f"%(n-(m*0.8)))……

不懂可评论

摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())print(a+b+c)sum=0num=input().split()for&nbs……

3行解决,使用count计数函数

摘要:解题思路:用count函数读取空格数量,再存入变量b,在加1完成注意事项:参考代码:#1505a=input()b=a.count("",0,len(a))+1pr……

不懂可评论

摘要:解题思路:注意事项:参考代码:#方法一c=input()for i in range(3):  &nb……

1738: 排序 -python快速排序

摘要:注意事项:注意输入输出参考代码:# 快速排序_升序_pythondef quick_sort(nums):  &nbsp……