题解 1065: 二级C语言-最小绝对值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

纯新手for循环

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; for(int i=0;i<10;i++){ scanf("%d",&a[i]); }……

1065最小绝对值(abs的使用)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){    int a[10];    int b[10];    for(int ……

找出最小绝对值

摘要: 最主要的问题是别忘了加绝对值,不然第二个是列会报错 #include #include int main() { int i; ……

有点小乱,仅供参考

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int jue(int a){ if(a<0) return -(a); else return a;}void main(){ int……

最小绝对值 数组

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,max,min;//最大和最小数的下标 int arr[10];//求完绝对值的数组 int arr……