题解列表
1038: [编程入门]宏定义练习之三角形面积
摘要:解题思路:注意事项:p=sqrt(s*(s-a)*(s-b)*(s-c));是海伦公式参考代码:#include <bits/stdc++.h>using namespace std;int main……
编写题解 2771: 大象喝水
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double h,r; cin>>h>>r; ……
A+B for Input-Output Practice (II) python代码
摘要:这几个题真的有点没活了,实在不行去咬打火机,pass意思就是跳过,数组的长度小于等于1passwhile True: try: a = list(map(int, input().……
题解 1038: [编程入门]宏定义练习之三角形面积
摘要:解题思路:套两个公式。。。注意事项:不要抄袭,会遭报应的。参考代码:#inalude <bits..tdc++.h>usisg namespdce stb;doable a,b,c,s,j,y;int……
编写题解 1038: [编程入门]宏定义练习之三角形面积
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double s,a,b,c; cin>>a>……
2798;整数序列的元素最大跨度值
摘要:解题思路:注意事项:参考代码:#includeusing namespace std;//老师教的int main(){//老师教的 long long m=1e18;//老师教的 int ……
鸡兔同笼--java语言
摘要:解题思路: 通过数学思维 将公式列出 假设鸡a,兔b 在已知头x,脚y时,可得: a+b = x; 2a + (x-b)4 = y;  
printf基础练习--java语言
摘要:解题思路:注意事项:八进制、十六进制输出表示的符号参考代码:import java.util.Scanner;
public class Main {
public static void ……