题解列表

筛选

题目 1670: 拆分位数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>int main(){ int i,n,m; scanf("%d",&n);//输入一个三位数 for(i=0;i<2;i+……

题目 1671: 小九九

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

Cylinder题解简短易懂python

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