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

CCF认证201803-1 跳一跳

时间:2018-11-02 18:57:57      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:print   break   res   lag   import   java   exti   span   int()   

import java.util.Scanner;
public class Jump {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int totalScore = 0;
        int preScore = 0;
        while(sc.hasNextInt()){
            int flag = sc.nextInt();
            int score = 0;
            if(flag == 0){
                break;
            }else if(flag == 1){
                //跳上方块没有跳到中心,总分+1
                score +=1;
                preScore = 1;
                totalScore += score;
            }else if(flag == 2){
                //跳上方块并且跳到中心,上次分数+2+总分
                if(preScore == 1){
                    score = 2;
                }else{
                    score = preScore + 2;
                }
                preScore = score;
                totalScore += score;
            }
        }
        System.out.println(totalScore);
    }
}

 

CCF认证201803-1 跳一跳

标签:print   break   res   lag   import   java   exti   span   int()   

原文地址:https://www.cnblogs.com/syq816/p/9897681.html

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