Advertisement
Guest User

student

a guest
Nov 19th, 2015
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. package student;
  2.  
  3. /**
  4.  *
  5.  * @author Ayoub
  6.  */
  7. public class Student {
  8.  
  9.     /**
  10.      * @param args the command line arguments
  11.      */
  12.     public static void main(String[] args) {
  13.         // TODO code application logic here
  14.        
  15.         String names[] = {"ayoub","ali","salah"};
  16.         int    point[] = {15,10,12};
  17.         Point test = new Point();
  18.         test.SetPoint(names,point);
  19.         test.ShowResult();
  20.      
  21.  
  22.     }
  23.    
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement