用java语言编写:计算并输出一个整数各位数字之和

 我来答
百度网友bccdacf
推荐于2018-02-28 · TA获得超过1.2万个赞
知道大有可为答主
回答量:2868
采纳率:100%
帮助的人:1288万
展开全部
草草的写了一个,你先看下,我要断网了,下次再聊
public class TestIncreace {

void TestInc(int n){
int []a = new int []{0,0,0,0,0,0,0,0};//这里可以测试8位数
int sum = 0;
for(int i = 0;i < a.length;i ++){
a[i] = n % 10;
n = n / 10;
sum += a[i];
}
System.out.println(sum);
}

public static void main(String[] args) {
TestIncreace t = new TestIncreace();
t.TestInc(1223);//括号内为要测试的数据

}
}

--------------------------------------------------------------------------------------
代码修改:

/*
* 输入一个整数n,输出n的各个位数之和,抛出异常
*/

import java.util.Scanner;

public class TestIncreace {

void TestInc(int n) throws Exception{

int []a = new int [n];
int sum = 0;
for(int i = 0;i < a.length;i ++){
a[i] = n % 10;
n = n / 10;
sum += a[i];
}
System.out.println(sum);

}

public static void main(String[] args) throws Exception {
try{
TestIncreace t = new TestIncreace();
System.out.println("请输入您要测试的数据:");
Scanner input = new Scanner(System.in);
int in = input.nextInt();
t.TestInc(in);//括号内为要测试的数据

}catch(Exception e){
System.out.println("非法数字");
}
}

}
柴语n
2018-04-04 · TA获得超过2749个赞
知道小有建树答主
回答量:20
采纳率:100%
帮助的人:3257
展开全部

public class Test {


public static void main(String[] args) {


int a = 1203;


int sum = 0;


while(a / 10 != 0){


sum += a % 10;


a = a / 10;


}sum = sum + a;


System.out.println("各位数字之和为" + sum);


}


}


testing


各位数字之和为6

import java.io.*;


public class ssss


{

public static void main(String[] args)
{


String num=null;


System.out.println("请输入一个整数,回车结束");
try


{
InputStreamReader isr=new InputStreamReader(System.in);
BufferedReader br=new BufferedReader(isr);
while((num=br.readLine())!=null&&num.length()!=0)


{
sum(num);
System.out.println("请输入一个整数,回车结束");
}


}
catch(Exception e)
{
e.printStackTrace();
}


}


public static void sum(String num)
{
int b=0;
for(int i=0;i<num.length();i++)
{
b+=Integer.parseInt(num.substring(i,i+1));
}


System.out.println("该整数各个位上数字之和为:"+b);
}


}

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
水天晓
2012-03-18
知道答主
回答量:33
采纳率:0%
帮助的人:16.9万
展开全部
public int sum(int number) {
int result = 0;
String numStr = String.valueOf(number);
for(int i = 0; i < numStr.length(); i++) {
result += Integer.parseInt("" + numStr.charAt(i));
}
return result;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jyl3qf
2012-03-21
知道答主
回答量:12
采纳率:0%
帮助的人:4.3万
展开全部
public int getSum(int a){
if(a<0){
a=-a;
}
if(a%10==a){
return a;
}else {
return a%10+getSum(a/10);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
flyingFish211
2012-03-18 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
public class Test {

public static void main(String[] args) {
int a = 1203;

int sum = 0;
while(a / 10 != 0){
sum += a % 10;
a = a / 10;
}

sum = sum + a;

System.out.println("各位数字之和为" + sum);

}

}

-----------testing
各位数字之和为6
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式