Java technology supports calculating the sum of individual digits

Source: Internet
Author: User

[Java]
/*
* Start the program header annotation.
* Copyright and version Declaration of the program
* Copyright (c) 2011, a student from the computer College of Yantai University
* All rights reserved.
* File name: calculates the sum of individual digits.
* Author: Xue Guangchen
* Completion date: January 1, September 15, 2011
* Version No.: x1.0

* Description of tasks and Solutions
* Input description:
* Problem description: enter an integer on the keyboard to calculate the sum of individual digits.
 

* Program output:
* End the comment in the program Header
*/
Package xue.com;
 
Public class Sum {
 
/**
* @ Param args
*/
Public static void main (String [] args ){
// TODO Auto-generated method stub
Int s = 0, B = 0;
System. out. println ("enter an integer :");
Int number = Console. readInt ();
Int m = number;
While (m! = 0)
{
B = m % 10;
M = m/10;
S = s + B;
}
System. out. println ("the sum of individual digits is :");
System. out. println (s );
 
}
 
}
 
Running result:
Enter an integer:
137
The sum of individual digits is:
11

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.