1. 请设计一个类Demo,这个类包含如下操作:
A:求两个数的和。
B:判断两个数是否相等。
C:输出九九乘法表。- class Demo
- {
- int x,y;
- public void add()
- {
- System.out.println("x+y="+(x+y));
- }
- public void compare()
- {
- if (x==y)
- {
- System.out.println("x=y");
- }
- else
- System.out.println("x!=y");
- }
- public void jiuJiuChengFaBiao()
- {
- for (int x=1;x<=9 ;x++ )
- {
- for (int y=1;y<=x ;y++ )
- {
- System.out.print(y+"x"+x+"="+(x*y)+"\t");
- }
- System.out.println();
- }
- }
- }
- class ZuoYe
- {
- public static void main(String[] args)
- {
- Demo d = new Demo();
- d.x=3;
- d.y=4;
- d.add();
- d.compare();
- d.jiuJiuChengFaBiao();
- }
- }
复制代码
|