Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.mycompany.ja7;
- /**
- *
- * @author Admin
- */
- public class Institute {
- public static final int INSTITUTE1 = 1101;
- public static final int INSTITUTE2 = 1102;
- public static final int INSTITUTE3 = 1103;
- //
- public static final int[] all = {INSTITUTE1, INSTITUTE2, INSTITUTE3};
- //
- public static void printAll(){
- // System.out.println(INSTITUTE1);
- // System.out.println(INSTITUTE2);
- // System.out.println(INSTITUTE3);
- for (int i = 0; i < all.length; i++) {
- System.out.println(all[i]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement