求整数的 Root:给定正整数,求每位数字之和;如果和不是一位数,则重复; 输入:输入任意一个或多个整数 输出:输出各位数字之和,直到和为个位数为止(输入异常,则返回-1),多行,每行对应一个输入数据的结果。
25 865
7 1
import java.util.Scanner;
public class Main {
static int[] num = {1,2,5,10,20,50,100};
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
while(scan.hasNext()){
int input = scan.nextInt();
if(input < 1){
System.out.println(-1);
}else{
System.out.println(getRoot(input));
}
}
}
public static int getRoot(int n){
int all = 0;
int a = 0;
while(n > 0){
a = n % 10;
n = n / 10;
all = all +a;
}
if(all >= 10){
return getRoot(all);
}
return all;
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.