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

第二章编程练习题2.6

时间:2015-04-06 18:37:20      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

import java.util.Scanner;


public class Main5 {

    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int number = input.nextInt();
        int last = number % 10;
        int shengxia = number/10;
        int second = shengxia%10;
        shengxia = shengxia/10;
        int third = shengxia %10;
        int sum = last + second+third;
        System.out.println(sum);
    }
    
}

 

第二章编程练习题2.6

标签:

原文地址:http://www.cnblogs.com/aicpcode/p/4396267.html

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