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

PATA -1008 Elevator

时间:2020-06-30 00:57:41      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:display   else   turn   int   none   span   return   mes   class   

技术图片
#include<stdio.h>
using namespace std;
int main(){
    int n;
    scanf("%d",&n);
    int b,nowb,subb,res=0;
    b=0;
    for(int i=0;i<n;i++){
        scanf("%d",&nowb);
        subb = nowb - b;
        if(subb>0)  res += subb*6 + 5;
        else res += (-subb)* 4 + 5;
        b = nowb;
    }
    printf("%d",res);
    return 0;
}
View Code

 

PATA -1008 Elevator

标签:display   else   turn   int   none   span   return   mes   class   

原文地址:https://www.cnblogs.com/Learn-Excel/p/13211137.html

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