编辑入门 成绩评定】 摘要:参考代码:#include<stdio.h>void main(){ int a; scanf("%d",&a); if(a>=90) printf("A\n"); if(a>=8…… 题解列表 2021年11月07日 0 点赞 0 评论 307 浏览 评分:0.0
编程入门成绩评定 摘要:解题思路:简单的运用if来解决注意事项:仔细一些注意符号,英文是否都参考代码#include<stdio.h> /*头文件*/void main() …… 题解列表 2021年11月07日 0 点赞 0 评论 712 浏览 评分:8.7
编辑入门 成绩评定 摘要:解题思路:用if语句注意事项:需要搞懂其中的逻辑参考代码:#include <stdio.h>void main(){ int a; scanf("%d",&a); if (a>=90) printf…… 题解列表 2021年11月07日 0 点赞 0 评论 313 浏览 评分:0.0
二级C语言-分段函数题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float x,y; scanf("%f",&x); if(…… 题解列表 2021年11月07日 0 点赞 0 评论 402 浏览 评分:2.0
二级c语言-分段函数题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float x,y; scanf("%f",&x); if(x<1) y=x; …… 题解列表 2021年11月07日 0 点赞 0 评论 335 浏览 评分: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 评论 436 浏览 评分: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 评论 337 浏览 评分:0.0
自定义函数之数字后移【题解】 摘要:假如我往后移动m个数,我先把后面的m个数放到一个新的数组的前面,m在a数组中也就是排在x-m位,x是我输入数的个数。排完之后把前面的x-m-1个数往新数组的后面排即可。 **本题难点在于数字在数组的…… 题解列表 2021年11月06日 0 点赞 0 评论 361 浏览 评分: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 评论 630 浏览 评分: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 评论 982 浏览 评分:9.9