题解列表

筛选

编程入门成绩评定

摘要:解题思路:简单的运用if来解决注意事项:仔细一些注意符号,英文是否都参考代码#include<stdio.h>               /*头文件*/void main()            ……

编辑入门 成绩评定

摘要:解题思路:用if语句注意事项:需要搞懂其中的逻辑参考代码:#include <stdio.h>void main(){ int a; scanf("%d",&a); if (a>=90) printf……

二级C语言-分段函数题解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){     float  x,y;  scanf("%f",&x);     if(……

二级c语言-分段函数题解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     float  x,y;  scanf("%f",&x);     if(x<1)     y=x;   ……

2001,好懂的方法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){    int a,b,c;    scanf("%d%d%d",&a,&b,&……

自定义函数之数字后移【题解】

摘要:假如我往后移动m个数,我先把后面的m个数放到一个新的数组的前面,m在a数组中也就是排在x-m位,x是我输入数的个数。排完之后把前面的x-m-1个数往新数组的后面排即可。 **本题难点在于数字在数组的……

编写题解 1173: 计算球体积

摘要:解题思路:注意事项:注意4.0参考代码:#include<stdio.h>#include<math.h>#define PI 3.1415 int main(){ double R,V; while……