给出一个四位整数,用java编程输出各个位上的数字

 我来答
百度网友ce9e08b7
推荐于2017-05-26 · TA获得超过1870个赞
知道小有建树答主
回答量:1675
采纳率:0%
帮助的人:1148万
展开全部
public class TestBaiduKnow {

public static void main(String args[])
{
int n = 1234;

for(int i =1;i<=4;i++){
int t = n%10;
n = n/10;
if(i==1)
System.out.println("个位:"+t);
else if(i==2)
System.out.println("十位:"+t);
else if(i==3)
System.out.println("百位:"+t);
else
System.out.println("千位:"+t);
}
}
yugi111
2015-10-09 · TA获得超过8.1万个赞
知道大有可为答主
回答量:5.1万
采纳率:70%
帮助的人:1.3亿
展开全部
public class Yugi{
    public static void main(String[] args){
        int num = 1234;
        int a = num / 1000;
        int b = num / 100 % 10;
        int c = num / 10 % 10;
        int d = num % 10;
        System.out.println("a="+a + ", b="+b+", c="+c+", d="+d);
    }
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xjf5562
2015-10-09 · TA获得超过1190个赞
知道小有建树答主
回答量:896
采纳率:75%
帮助的人:737万
展开全部
int i=2388;
int[] a=new int[4];
a[0]=i/1000;
a[1]=(i-a[0]*1000)/100;
a[2]=(i-a[0]*1000-a[1]*100)/10;
a[3]=i-a[0]*1000-a[1]*100-a[2]*10;
for(int j:a) System.out.println(j);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式