计算书费(思路清晰明了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a[10]; float sum; for(i=1;i<=10;i++) {…… 题解列表 2024年12月05日 1 点赞 0 评论 520 浏览 评分:0.0
求球的体积 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double r,v; while(scanf("%lf",&r)!=EOF) { …… 题解列表 2024年12月05日 3 点赞 0 评论 687 浏览 评分:0.0
编写题解 2772: 苹果和虫子 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,x,y,sum=0; scanf("%d %d %d",&n,&x,&y); s…… 题解列表 2024年12月05日 0 点赞 0 评论 221 浏览 评分:0.0
编写题解 2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ double Xa,Xb,xa,xb; double s; …… 题解列表 2024年12月05日 1 点赞 0 评论 378 浏览 评分:0.0
编写题解 2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ float x1,x2,x3,y1,y2,y3; double a,b…… 题解列表 2024年12月05日 1 点赞 0 评论 320 浏览 评分:0.0
编写题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,n,sum=1; scanf("%d",&n); for(i=1;i<=n;i+…… 题解列表 2024年12月05日 0 点赞 0 评论 210 浏览 评分:0.0
编写题解 2781: 奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char ch; ch=getchar(); if(ch%2==0) printf("…… 题解列表 2024年12月05日 0 点赞 0 评论 472 浏览 评分:0.0
编写题解 2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; scanf("%d",&a); if(a>=10&&a<100) pri…… 题解列表 2024年12月05日 0 点赞 0 评论 387 浏览 评分:0.0
[编程入门]完数的判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int isperfect(int num) { // 判断是不是完数 int i, sum = 0; for …… 题解列表 2024年12月05日 1 点赞 0 评论 722 浏览 评分:0.0
1632C语言解决 摘要:解题思路:双重for循环解决问题注意事项:参考代码:#include<stdio.h>int main(){ int n; int i,j; scanf("%d",&n); for(i=1;i<=n;…… 题解列表 2024年12月05日 0 点赞 0 评论 150 浏览 评分:0.0