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

2.6

时间:2017-09-18 13:28:28      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:[]   image   ber   int()   技术分享   logs   exti   src   util   

java.util.Scanner;
public class Demo_1{
    public static void main(String[] agrs) {
        Scanner input = new Scanner(System.in);
        System.out.print("Enter a number 0 and 1000: ");
        int number = input.nextInt();
        int numbera = number % 10;
        int numberb = number / 10;
        int numberc= numberb % 10;
        int numberd= numberc % 10;
       
        int sum = numbera  + numberc + numberd;
        System.out.println("The sum of the digits is " + sum );
    }
}技术分享

2.6

标签:[]   image   ber   int()   技术分享   logs   exti   src   util   

原文地址:http://www.cnblogs.com/jingjing1314/p/7542457.html

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