1953 666C语言 good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c,x; scanf ("%d",&x); a=x/1%10;b=x/10%10;c=x/1…… 题解列表 2021年11月01日 0 点赞 0 评论 397 浏览 评分:0.0
1171: 蟠桃记 摘要:解题思路:从最后一天往前推注意事项:参考代码:while True: n=int(input()) s=1 for i in range(n-1): s=(s+1)*2…… 题解列表 2021年11月01日 0 点赞 0 评论 516 浏览 评分:0.0
1111: Cylinder ,python版本 摘要:pi = 3.14159265358while True: try: w,h=map(int,input().strip().split()) if w == 0 and h == 0: …… 题解列表 2021年11月01日 0 点赞 1 评论 499 浏览 评分:0.0
强行用一维数组解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[10],i,j,b; for(i=0;i<9;i++) scanf("%d",&a[i…… 题解列表 2021年11月01日 0 点赞 0 评论 370 浏览 评分:0.0
[编程入门]三个数字的排序(用的比较麻烦的循环) 摘要:参考代码:#include<stdio.h>int main(){ int a[3], i,max,min,c,b; for (i = 0; i < 3; i++) { …… 题解列表 2021年11月01日 0 点赞 0 评论 364 浏览 评分:0.0
求长方形正方形的面积和周长 摘要:解题思路:通过公式求解注意事项:基本知识的应用参考代码:#include<stdio.h>int main(){ int a,b,C,S; scanf("%d%d",&a,&b); C=2*a+2*b…… 题解列表 2021年11月02日 0 点赞 0 评论 708 浏览 评分:0.0
三位数的分解,多位数同理 摘要:解题思路:分解出多位数的个个数注意事项:基础知识的应用参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d",&a); printf("%d…… 题解列表 2021年11月02日 0 点赞 0 评论 421 浏览 评分:0.0
2001,好懂的方法 摘要:解题思路:勾股定理注意事项:或字符参考代码:#include <stdio.h>#include <math.h>int main(){ int a,b,c; scanf("%d%d%…… 题解列表 2021年11月02日 0 点赞 0 评论 773 浏览 评分:0.0
1954 666cyuyan C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int m;float n; scanf ("%d",&m); n=50+0.4*m; printf ("%…… 题解列表 2021年11月02日 0 点赞 0 评论 388 浏览 评分:0.0
1955 成员C语言666分 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,m;float c; scanf ("%d %f %d",&a,&c,&b); m=(a*1…… 题解列表 2021年11月02日 0 点赞 0 评论 771 浏览 评分:0.0