首页 > 编程语言 > 详细

使用java解决简单数学题

时间:2019-08-14 14:03:22      阅读:82      评论:0      收藏:0      [点我收藏+]

今天遇见别人给的几道题,尝试用java程序解决。

大家看看对不对。提出自己的意见。

 

技术分享图片

 

 1 import org.junit.Test;
 2 
 3 public class test02math {
 4     @Test
 5     public void math1(){
 6         int money = 100;
 7         int cock_money = 5;
 8         int hen_money = 3;
 9         float chick_money = 1/3f;
10         int cock,hen,chick;
11         for (int j = 1; j <= money / cock_money; j++) {
12             cock = j;
13             for (int k = 1; k <= money / hen_money - j; k++) {
14                 hen = k;
15                 for (int l = 3; l <= money/chick_money/3 - k - j; l+=3) {
16                     chick = l;
17                     System.out.println("有"+cock+"只公鸡");
18                     System.out.println("有"+hen+"只母鸡");
19                     System.out.println("有"+chick+"只小鸡");
20                     if(cock*cock_money+hen*hen_money+chick*chick_money==money&&cock+hen+chick==100){
21                         System.out.println("此方案成功!");
22                         System.out.println(cock+"*"+cock_money+"+"+hen+"*"+hen_money+"+"+chick+"*"+chick_money+"="+money);
23                         System.out.println(cock*cock_money+"+"+hen*hen_money+"+"+chick*chick_money+"="+money);
24                         System.out.println("===================");
25                         System.exit(0);
26                     }else{
27                         System.out.println("此方案错误!");
28                         System.out.println("===================");
29                     }
30                 }
31             }
32         }
33     }
34 
35     @Test
36     public void math2(){
37         int day = 0;
38         int count = 0;
39         int a = 325;
40         int b = 325;
41         int c = 325;
42         while(day<365){
43             day++;
44             a += 150;
45             b += 120;
46             c += 90;
47             System.out.println("第"+day+"天甲共走了"+(a-325)+"里");
48             System.out.println("第"+day+"天乙共走了"+(b-325)+"里");
49             System.out.println("第"+day+"天丙共走了"+(c-325)+"里");
50             System.out.println("----------------------------");
51             if(a%325==0){
52                 count++;
53                 System.out.println("甲在第"+day+"天回到原点!");
54             }
55             if(b%325==0){
56                 count++;
57                 System.out.println("乙在第"+day+"天回到原点!");
58             }
59             if(c%325==0){
60                 count++;
61                 System.out.println("丙在第"+day+"天回到原点!");
62             }
63             if(count==3){
64                 System.out.println("三人在第"+day+"天同时回到原点!");
65                 break;
66             }else{
67                 count=0;
68             }
69         }
70     }
71     @Test
72     public void math03(){
73         for (float i = 2f; i < 10000; i++) {
74             if(i/2/20==1775/(i+14+20)){
75                 System.out.println("这座城的边长为"+(int)i+"步");
76             }
77         }
78     }
79 }

 

帮助大家拓展思维,能够使用java解决各种问题

 

使用java解决简单数学题

原文:https://www.cnblogs.com/YLTzxzy/p/11351461.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!