/* 请设计一个类Demo,这个类包含如下操作:
A:求两个数的和。
B:判断两个数是否相等。
C:输出九九乘法表。
最后在测试类Test中进行测试。
*/
class Demo {
int first;
int second;
public int sum() {
return first + second;
}
public String compare() {
if(first == second) {
return "这两个数相等";
}
else {
return "这两个数不等";
}
}
public void jiuJiu() {
for(int x = 1;x <= 9;x++) {
for(int y = 1;y <= x;y++) {
System.out.print(y +"*"+x +"="+x*y+"\t");
}
System.out.println();
}
}
}
class Test {
public static void main(String[] args) {
Demo c = new Demo();
c.first = 5;
c.second = 6;
int d = c.sum();
System.out.println(d);
System.out.println(c.compare());
c.jiuJiu();
}
} |
|