题解列表

筛选

C语言简便易懂

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){     int n,s=0;     scanf("%d",&n);     while(n!=0)     ……

金币超简单

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int n, i, j, k = 0, s = 0;    scanf("%d", &n);    fo……

Cylinder题解简短易懂python

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