用java语言编写程序

用while或者dowhile循环... 用while 或者 do while循环 展开
 我来答
Minminkr
2019-01-16 · 超过27用户采纳过TA的回答
知道答主
回答量:29
采纳率:100%
帮助的人:33.4万
展开全部
public class NumSplit {
public static void main(String[] args) {
int num = 100;
while(num<1000){
//求各位上的数
int gw = num % 10;
//求十位上的数
int sw = num / 10 % 10;
//求百位上的数
int bw = num / 100 % 10;
//求和
if( num == (gw*gw*gw) +(sw*sw*sw) +(bw*bw*bw)){
System.out.println(num);
}
num++;
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2019-01-02
展开全部
public class test {
public static void main(String[] args){
int num=100,a,b,c;
System.out.println("所有的水仙花数:");
while(num++<1000){
a = num/100;
b = num/10%10;
c = num%10;
if(num == a*a*a+b*b*b+c*c*c){
System.out.println(num);
}
}
}
}
//纯手打,望采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
向前奔跑
2019-01-02 · 知道合伙人互联网行家
向前奔跑
知道合伙人互联网行家
采纳数:19 获赞数:43
5年软件开发经验,熟悉Android,J2E,PHP语言。

向TA提问 私信TA
展开全部
int start=100,end=999;
while(start<end){
int baiwei=start/100;
int shiwei=(start-baiwei*100)/10;
int gewei=start%10;
if(start==这几个数的立方和){
输出
}
start++;

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式