-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRMIInterface.java
More file actions
46 lines (24 loc) · 1.53 KB
/
RMIInterface.java
File metadata and controls
46 lines (24 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import java.rmi.*;
public interface RMIInterface extends Remote{
public int Cong2so(int a,int b) throws RemoteException;
public boolean KT_SoChinhPhuong(int n) throws RemoteException;
public int[] kq_SoChinhPhuong(int a[]) throws RemoteException;
public boolean Is_Perfect_Square(int n) throws RemoteException;
public boolean KT_Fibonaci(int n) throws RemoteException;
public int[] kq_Fibonaci(int a[]) throws RemoteException;
public int[] kq_TangDan(int a[]) throws RemoteException;
public int[] kq_GiamDan(int a[]) throws RemoteException;
public int kq_Max(int a[]) throws RemoteException;
public int kq_Min(int a[]) throws RemoteException;
public int kq_CongMang(int a[]) throws RemoteException;
public float kq_TrungBinhMang(int a[]) throws RemoteException;
public String MaSV_3SoCuoi(String a) throws RemoteException;
public int KTnamnhuan(int a)throws RemoteException;
public int Songay(int n,int nam)throws RemoteException;
public String XepLoai(float diem)throws RemoteException;
public double Tinhgiaithua(int n) throws RemoteException;
public int KTChuoiDX(String s) throws RemoteException;
public String ChuanhoaSpace(String s) throws RemoteException;
public String chuanHoa(String str) throws RemoteException;
public String chuanHoaDanhTuRieng(String str) throws RemoteException;
}