从1到50之中任意取5个数字之和为100的java代码

 我来答
百度网友d1ad2d0
2015-07-15
知道答主
回答量:14
采纳率:0%
帮助的人:13.5万
展开全部
  public static void main(String args[]){

   int one,two,three,four,five;
   do{
  one = (int) (Math.random()*50)+1;
   two = (int) (Math.random()*50)+1;
   three = (int) (Math.random()*50)+1;
   four = (int) (Math.random()*50)+1;
   five = 100 - one - two - three - four;
   }while(five<=0 || five>50);
   System.out.println("one = "+one);
   System.out.println("two = "+two);
   System.out.println("three = "+three);
   System.out.println("four = "+four);
   System.out.println("five = "+five);
   System.out.println("sum = "+(one+two+three+four+five));
  }
  
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式