public class MyClass{
private int x; private int y;
public MyClass(int a,int b){
x=a;y=b;
}
public int Sum(){
return x+y;
}
public int Mul(){
return x*y;
}
public int Div(){
return x/y;
}
public int Rem(){
return x%y;
}
public int Max(){
return x>y?x:y;
}
public int Min(){
return x>y?y:x;
}
}
测试自己写吧
定义一个类,类里定义属性和方法,分别完成以前功能,然后写个main函数. 先实例化你的类获得一个对象,然后分别调用你定义的方法。 这是基础知识,只要学过编程的都应该会的。 一般很少有人回答这方面问题。 希望对你有帮助。 基础很重要,LZ加油。
public class Test
{
private int x;
private int y;
// 定义方法
//例如加法,例如都是整型相加
public int plus(int x,int y) {
return (x + y);
}
}
就这个啊???。。。。。
定义构造函数初始化这两个属性
public 类名(int x, int y){
this.x=x;
this.y=y;
}
求两个数的差(x-y)并返回结果的方法
public int 方法名(){
return x-y;
}
以此类推,知道了吧
public class Test {
private int x;
private int y;
//构造
public Test(int x,int y){
this.x=x;
this.y=y;
}
//加法
public int add(){
return x+y;
}
//减法
public int sub(){
return x-y;
}
//乘法
public int mul(){
return x*y;
}
//除法
public int div(){
return x/y;
}
//求余
public int mod(){
return x%y;
}
//最大值
public int max(){
return x>y?x:y;
}
//最小值
public int min(){
return x
}