题解列表
优质题解
编写题解 1028: [编程入门]自定义函数求一元二次方程
摘要:解题须知:
共轭复根:
摘要:m = int(input())
for i in range(m):
a, b = map(int, input().split())
a_list = [i for i in……
小白也能懂的入门代码
摘要:解题思路:注意事项:参考代码:for i in range(100,1000): a,b,c=str(i) if int(a)**3+int(b)**3+int(c)**3==int(i)……
第一个HelloWorld程序
摘要:解题思路:这题没什么好说的注意事项:输出时记得换行,输出时记得换行“ ”。参考代码:#include<bits/stdc++.h>using namespace std; int main(){ ……
Tetrahedrons and Spheres
摘要:#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#……
1037 宏定义的练习
摘要:解题思路:1.输入两个整数2.求两个整数相除的余数注意事项:参考代码: a,b = map(int,input().split()) print(a%b)……
python——汽水瓶
摘要:def aa(a):
sum = 0
while a > 1:
s = a%3