四则运算

Posted 路上的小小滴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了四则运算相关的知识,希望对你有一定的参考价值。

1.源代码

package 四则运算;
//信1605-1张迪20163480
public class math {
     private int a,b,c,d;
     String f;
    
     public void set()
     {
         a=(int)(Math.random() * 99 + 1);
         b=(int)(Math.random() * 99 + 1);
         c=(int)(Math.random() * 3 + 1);
         
     } 
     public void result() {
         if(c==1)
         {
            
             System.out.println(a+"+"+b+"=");
         }
         else if(c==2)
         {
             System.out.println(a+"-"+b+"=");
         }
         else if(c==3)
         {
             System.out.println(a+"*"+b+"=");
         }
         else
         {
             System.out.println(a+"/"+b+"=");
         }
     }
   
     public static void main(String[] args) {
        math A=new math();
        for(int i=1;i<=60;i++)
        {
            A.set();
            A.result();
        }
        
     }
}

2.截图

 

以上是关于四则运算的主要内容,如果未能解决你的问题,请参考以下文章

如何在 python 中并行化以下代码片段?

20个简洁的 JS 代码片段

获取 badarith,[erlang,'+',[error,0],[],同时使用 Erlang 片段在 TSUNG 中执行算术运算

20个简洁的 JS 代码片段

四则运算

四则运算单元测试