摘要:
import java.util.Scanner;public class number{ public static int sum(long n){ int sum=0; while(n>0){ int m=(int)(n%10); sum=sum+m; n=n/10; } return sum 阅读全文
posted @ 2016-03-28 18:19
飞在窗口的猫
阅读(122)
评论(0)
推荐(0)
浙公网安备 33010602011771号