360:跳高游戏

Posted zdtiio

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了360:跳高游戏相关的知识,希望对你有一定的参考价值。

这题,哎少写了=号贼难受。

 

 

// ConsoleApplication4test.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <algorithm>
#include <math.h>
#include <iostream>
#include <vector>
using namespace std;

bool fun2(int&a, int&b, int&c)
{
    if (c>=b&&b>=a)
    {
        return true;
    }
    else
    {
        return false;
    }
}

int fun1(vector<int>& v,int& k,int& e )
{
    int count = 0;
    for (int i = (k-1); i < (e-2); i++)
    {
        if (fun2(v.at(i),v.at(i+1),v.at(i+2)))
        {
            count++;
        }
    }
    return count;
}

int _tmain(int argc, _TCHAR* argv[])
{
    int n;
    cin >> n;
    vector<int> v;
    int temp_num;
    for (int i = 0; i < n; i++)
    {
        cin >> temp_num;
        v.push_back(temp_num);
    }
    int m;
    cin >> m;
    vector<int> s;
    for (int i = 0; i < 2*m; i++)
    {
        cin >> temp_num;
        s.push_back(temp_num);
    }

    for (int i = 0; i < m; i++)
    {
        cout << fun1(v, s.at(2*i), s.at(2*i + 1)) << endl;
    }
    return 0;
}

 

以上是关于360:跳高游戏的主要内容,如果未能解决你的问题,请参考以下文章

UITableView异步图片动态跳高

从片段调用 Google Play 游戏服务

为啥我不能在 XNA 中保存我的 Xbox 360 游戏?

scratch跳高比赛 电子学会图形化编程scratch等级考试三级真题和答案解析2021-12

如何使用 pyusb 控制 Xbox 360 游戏手柄上的 LED

scratch跳高比赛 电子学会图形化编程scratch等级考试三级真题和答案解析2021-12