题解列表
Java有规律的数列求和
摘要:解题思路:假设第一项的分子为a,分母为b,则第一项为a/b,第二项为(a+b)/a,第三项为((a+b)+a)/(a+b)......总结一下:后一项的分子为前一项分子分母的和,后一项的分母为前一项的……
f-string编写题解 2750: 字符菱形
摘要:解题思路:注意事项:参考代码:a=input()for i in range(3): print(' '*(2-i), end='') print(f……
编写题解 2772: 苹果和虫子-while循环
摘要:解题思路:注意事项:参考代码:n,x,y=map(int,input().split())while y<(n*x): if y%x==0: print(n-(y//x)) ……
1016: [编程入门]水仙花数判断
摘要:for i in range(100, 1000): temp = i num1 = temp % 10 temp //= 10 num2 = temp % 10 tem……
编写题解 2774: 计算三角形面积
摘要:解题思路:注意事项:参考代码:import mathx1,y1,x2,y2,x3,y3=map(float,input().split())a=math.sqrt(math.pow(x1-x2,2)+……
设立boolean标志,使其判断大小写、数字、特殊字符等都只判断一次
摘要:解题思路:注意事项:参考代码:import java.util.*;
public class Main {
public static void main(String[] args) ……
DR 0001 字符统计
摘要:解题思路: 暂无注意事项: 单个字符用‘’,字符串是索引序列,要通过charAt()去调用单个字符参考代码:import java.util.Scanner;public class Main { ……