题解列表

筛选

Cylinder题解简短易懂python

摘要:解题思路:注意事项:注意分两种情况讨论,还有不要自己定义pi。。。。参考代码:import mathpi=math.piwhile True:    w,h=map(float,input().spl……

题目 1671: 小九九

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>int main(){ printf("1*1=1\n"); printf("1*2=2  2*2=4\n"); print……