首页 > 其他 > 详细

四则运算

时间:2017-03-10 20:41:29      阅读:126      评论:0      收藏:0      [点我收藏+]

public class Operation{
public static void main(String[] args) {
int first ;
int second ;
int third;

for (int i=0;i<300;i++){ 
first =(int) (Math.random()*100);
second = (int)( Math.random()*100);
third=(int)(Math.random()*4);
switch(third) {
case 0:
System.out.println(first +"+"+second+"=");
break;
case 1:
System.out.println(first+"-"+ second+"=");
break;
case 2:
System.out.println (first +"*"+ second+"=");
break;
case 3:
if(second==0){
second=(int)(Math.random()*100+1);
System.out.println(first+ "/" +second+"=");
}else{
System.out.println(first+ "/" +second+"=");
}
break;
}


}

四则运算

原文:http://www.cnblogs.com/cjc10052/p/6532797.html

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