Guest User

Untitled

a guest
Dec 13th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. //Author:Animesh Dutta
  2. class Party{
  3. int id;
  4. String name;
  5.  
  6. public static void main(String args[]){
  7. Party s1=new Party();
  8. System.out.println(s1.id);
  9. System.out.println(s1.name);
  10. }
  11. }
Add Comment
Please, Sign In to add comment