Elevator
Posted f--
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elevator相关的知识,希望对你有一定的参考价值。
1 import java.util.Scanner; 2 3 public class Main{ 4 public static void main(String args[]) { 5 Scanner sc=new Scanner(System.in); 6 while(true){ 7 int n=sc.nextInt(); 8 if(n==0) { 9 break; 10 } 11 int current=0; 12 int temp=0; 13 int tsum=0; 14 for(int i=0;i<n;i++) { 15 int end=sc.nextInt(); 16 if(end>temp) { 17 tsum=tsum+(end-temp)*6+5; 18 } 19 else { 20 tsum=tsum+(temp-end)*4+5; 21 } 22 temp=end; 23 } 24 System.out.println(tsum); 25 } 26 } 27 }
以上是关于Elevator的主要内容,如果未能解决你的问题,请参考以下文章