码迷,mamicode.com
首页 > 其他好文 > 详细

201712-1最小差值

时间:2019-08-07 22:24:50      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:math   tip   ips   float   str   stream   input   cin   mat   

#include<vector> 
#include<iostream>
#include<math.h>
using namespace std;

int main()
{
    int n;//元素个数 
    cin>>n;//输入n 
    vector <int> a;//a[]
    int min=10000;
    for(int i=0;i<n;i++)//input n ints 
    {
        int x;
        cin>>x;
        for(int j=0;j<i;j++)
        {
            if(abs(x-a[j])<min)
            min=abs(x-a[j]);
        }
        a.push_back(x);
    }
    cout<<min;
    return 0;
}

Tips:

取绝对对值函数:

#include<cmath>

or

#include<math.h>

 

abs(int){

...

return int;

}

fabs(float)

...

201712-1最小差值

标签:math   tip   ips   float   str   stream   input   cin   mat   

原文地址:https://www.cnblogs.com/WuDie/p/11318125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!