在Excel

时间:2017-09-27 19:25:04

标签: excel excel-formula

我需要帮助创建一个excel公式。我在A列中有一组数字,我需要在单元格B1中返回一个公式:

  1. 100,如果A1是A列中的最低数字
  2. 0,如果A1是A列中的最大数字
  3. 比例数,如果介于两者之间(例如50,如果它是最大和最小数字之间)

1 个答案:

答案 0 :(得分:0)

vector<long> vectorAddCheck(vector<long> x, long value){
    if(x.empty()){
        x.push_back(value);
    }
    else {
        for(int i = 0; i < x.size(); i++){
            if(x[i] < value){
                x[i] = value;
            }
        }
    }
    return x;
}


int main() {
    long numLines, numOutputs, temp;
    vector<long> outputList = {};
    cin >> numLines >> numOutputs;

    for(int i = 0; i < numLines; ++i){
        cin >> temp;
        outputList = vectorAddCheck(outputList, temp);
    }

    for(int i = 0; i < outputList.size(); i++){
        cout << outputList[i] << endl;;
    }
    return 0;
}

enter image description here