题解列表
1111: Cylinder ,python版本
摘要:pi = 3.14159265358while True: try: w,h=map(int,input().strip().split()) if w == 0 and h == 0: ……
[编程入门]三个数字的排序(用的比较麻烦的循环)
摘要:参考代码:#include<stdio.h>int main(){ int a[3], i,max,min,c,b; for (i = 0; i < 3; i++) { ……
求长方形正方形的面积和周长
摘要:解题思路:通过公式求解注意事项:基本知识的应用参考代码:#include<stdio.h>int main(){ int a,b,C,S; scanf("%d%d",&a,&b); C=2*a+2*b……
三位数的分解,多位数同理
摘要:解题思路:分解出多位数的个个数注意事项:基础知识的应用参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d",&a); printf("%d……
2001,好懂的方法
摘要:解题思路:勾股定理注意事项:或字符参考代码:#include <stdio.h>#include <math.h>int main(){ int a,b,c; scanf("%d%d%……
1954 666cyuyan C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int m;float n; scanf ("%d",&m); n=50+0.4*m; printf ("%……
1955 成员C语言666分
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,m;float c; scanf ("%d %f %d",&a,&c,&b); m=(a*1……
1980 永远都是C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x,y,y3; scanf("%d",&x); if(x>15) {y=(x-15)*3+30; p……