码迷,mamicode.com
首页 > 其他好文 > 详细

类和方法而调用

时间:2015-04-17 19:53:40      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

一.类的调用

1.代码

package 四则运算;

public class a {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Yunsuan a=new Yunsuan();
		int i;
		for(i=0;i<100;i++)
		{
			a.aa();
		}		
		}

}

  

package 四则运算;

import java.util.Random;

public class Yunsuan {
	int a;
	int b;
	int c;
	char s;
	public void aa()
	{
		Random random = new Random();
		a=random.nextInt(100);
		b=random.nextInt(100);
		c=random.nextInt(4);
		if(c==0)
		{
			s=‘+‘;
		}
		else if(c==1)
		{
			s=‘-‘;
		}
		else if(c==2)
		{
			s=‘*‘;
		}
		else
		{
			s=‘/‘;
		}
		System.out.print(a);
        System.out.print(s);
        System.out.print(b);
        System.out.print("=");
        System.out.print("  ");
	}
	
}

2.结果截图

技术分享

二.方法的调用

1.代码

package 四则运算;

import java.util.Random;

public class aa {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		a();
	}
	private static void a() {
		// TODO Auto-generated method stub
		 int a,b;
		 int i;
         for(i=0;i<10;i++)
         {
         Random random = new Random();
         a=random.nextInt(100);
         b=random.nextInt(100);
         zz(a,b);         
         }
	}
	private static void zz(int a, int b) {
		// TODO Auto-generated method stub
		 char s;
		 int c;
		 Random random = new Random();
		 c=random.nextInt(4);
         if(c==0)
         {
        	 s=‘+‘;
         }
         else if(c==1)
         {
        	 s=‘-‘;
         }
         else if(c==2)
         {
        	 s=‘*‘;
         }
         else
         {
        	 s=‘/‘;
         }
         System.out.print(a);
         System.out.print(s);
         System.out.print(b);
         System.out.print("=");
         System.out.print("   ");
		
	}

}

2.结果截图

技术分享

类和方法而调用

标签:

原文地址:http://www.cnblogs.com/feifeishi/p/4435734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!