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

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

筛选

纯粹手贱,不能理解,没有关系

摘要:解题思路:纯粹手贱,不能理解,没有关系注意事项:前方高能,注意避让参考代码:#include<stdio.h>int main(){ int a[10] = { 0 }; int b[10] = {0……

C语言 最小绝对值&

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

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

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