6-1 求一个整数各位数字累加和 作者 黎浩宏 单位 浙江工贸职业技术学院
编写方法,方法的功能是:求一个整数的各位数字的累加和。
###方法接口定义:
public static int SumNumber(int n);
其中 n 是用户传入的参数。方法须返回整数 'n' 的各位数字的累加和,其中0<=n<=99999。
###裁判测试程序样例:
import java.util.Scanner;
public class Main{
public static void main(String[] args){
int a,b;
Scanner sc=new Scanner(System.in);
a=sc.nextInt();
b=SumNumber(a);
System.out.println(b);
}
/* 请在这里填写答案 */
}
###输入样例:
12345
###输出样例:
15
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
MyCode:
public static int SumNumber(int n) {
int sum = 0;
while (n > 0) {
sum += n % 10;//去掉末尾数字并累加到sum中
n /= 10;
}
return sum;
}