题解 | #牛牛的短信#

牛牛的短信

http://www.nowcoder.com/practice/435c9e2bf4f84bee99b82ce84e95b0b7

import java.util.Scanner;
public class Main{
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        int length = scanner.nextInt();
        int[] words = new int[length];
        for(int index = 0; index < length; index++){
            words[index] = scanner.nextInt();
        }
        float price = 0.0f;
        for(int wordCount : words){
            price += wordCount > 60 ? 0.2 : 0.1;
        }
        System.out.printf("%.1f", price);
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 16:06
已编辑
快手电商 后端 23k-35k
点赞 评论 收藏
分享
10-06 12:46
门头沟学院 Java
跨考小白:定时任务启动
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务