编辑入门 成绩评定 摘要:解题思路:用if语句注意事项:需要搞懂其中的逻辑参考代码:#include <stdio.h>void main(){ int a; scanf("%d",&a); if (a>=90) printf…… 题解列表 2021年11月07日 0 点赞 0 评论 476 浏览 评分:0.0
二级C语言-分段函数题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float x,y; scanf("%f",&x); if(…… 题解列表 2021年11月07日 0 点赞 0 评论 565 浏览 评分:2.0
二级c语言-分段函数题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float x,y; scanf("%f",&x); if(x<1) y=x; …… 题解列表 2021年11月07日 0 点赞 0 评论 590 浏览 评分:2.0
1850没想到大意在换行上面C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c;while (~scanf ("%d/%d/%d",&a,&b,&c)) { …… 题解列表 2021年11月07日 0 点赞 0 评论 638 浏览 评分:9.9
2001,好懂的方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&…… 题解列表 2021年11月06日 0 点赞 0 评论 533 浏览 评分:0.0
自定义函数之数字后移【题解】 假如我往后移动m个数,我先把后面的m个数放到一个新的数组的前面,m在a数组中也就是排在x-m位,x是我输入数的个数。排完之后把前面的x-m-1个数往新数组的后面排即可。**本题难点在于数字在数组的位置不好判断,很容易弄错。**```c#includeintmain(){inta[10], 题解列表 2021年11月06日 0 点赞 0 评论 615 浏览 评分:9.9
角谷猜想,简洁明了(c语言代码) 摘要:#include<stdio.h> int main() { int n; scanf("%d", &n); while (n != 1) { if (n % 2 == 0)…… 题解列表 2021年11月06日 0 点赞 0 评论 820 浏览 评分:7.7
编写题解 1173: 计算球体积 摘要:解题思路:注意事项:注意4.0参考代码:#include<stdio.h>#include<math.h>#define PI 3.1415 int main(){ double R,V; while…… 题解列表 2021年11月06日 0 点赞 0 评论 1201 浏览 评分:9.9
[编程入门]成绩评定------【c语言】||【Python】 摘要:Python ```python n=int(input()) if n>=90: print('A') elif n>=80: print('B') elif n>=7…… 题解列表 2021年11月06日 0 点赞 0 评论 578 浏览 评分:0.0
最小绝对值(python,详细注释!不懂可私信) 摘要:参考代码:lis=list(map(int,input().split())) #输入参数lis1=list(map(abs,lis)) #使列表全部加绝对值s=min(…… 题解列表 2021年11月06日 0 点赞 0 评论 1174 浏览 评分:9.9