题解列表

筛选

题目意思要理解清楚

摘要:解题思路:注意事项:只动最小值,最大值,第一位,最后一位这四个位置的数字,其他的不动哦。(先找最小值,再找最大值)参考代码:#include<stdio.h>voidf1(inta[]){……

一组数组不行就两组

摘要:解题思路:注意事项:在自定义函数中在定义一组数组,用于存放原数组中各数组元素后移形成的各数组元素。参考代码:#include<stdio.h>voidf(inta[],intn,intm)……

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){  chara[150];  i……

1119简单if循环

摘要:解题思路:把数学公式理解就好了注意事项:参考代码:#include<stdio.h>#include<math.h>#defineP(x)pow(x,3)intmain(){i……

简易,易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>intmain(){  inta,b,c……

c语言代码详细

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>intmain(){  inta,b,c……

c语言代码详细

摘要:解题思路:注意事项:参考代码:intmain(){  inta,b,c,d;  scanf("%d",&am……

最大公约数与最小公倍数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){  intm,n;&am……

c语言代码详细

摘要:解题思路:注意事项:参考代码:intfun(intn){  if(n<=4)  returnn; &am……