题解列表
二级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; ……
1850没想到大意在换行上面C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c;while (~scanf ("%d/%d/%d",&a,&b,&c)) { ……
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个数往新数组的后面排即可。
**本题难点在于数字在数组的……
角谷猜想,简洁明了(c语言代码)
摘要:#include<stdio.h>
int main()
{
int n;
scanf("%d", &n);
while (n != 1)
{
if (n % 2 == 0)……
编写题解 1173: 计算球体积
摘要:解题思路:注意事项:注意4.0参考代码:#include<stdio.h>#include<math.h>#define PI 3.1415 int main(){ double R,V; while……
[编程入门]成绩评定------【c语言】||【Python】
摘要:Python
```python
n=int(input())
if n>=90:
print('A')
elif n>=80:
print('B')
elif n>=7……