本文主要是介绍浙大PAT (Advanced Level) Practise 1008 Elevator (20),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*本题是道水题,直接考察前后两个数字的关系解题,代码如下:*/
#include <iostream>
using namespace std;int main()
{int n;while(cin>>n){int num[10000]={0};int t=0;for(int i=1;i<=n;++i){cin>>num[i];if(num[i]>num[i-1]) //上楼t=t+(num[i]-num[i-1])*6;else if(num[i]<num[i-1]) //下楼t=t+(num[i-1]-num[i])*4;}t+=n*5; //加上停留时间cout<<t<<endl; //输出结果}return 0;
}
这篇关于浙大PAT (Advanced Level) Practise 1008 Elevator (20)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!