Guest User

Untitled

a guest
Jun 23rd, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public static void main(String[] args)
  2. {
  3. int counter =0;
  4. Scanner scanny = new Scanner(System.in);
  5.  
  6. counter = scanny.nextInt();
  7.  
  8. for(int i = 1; i <= counter; i++)
  9. {
  10. int value = scanny.nextInt();
  11. System.out.println(i +" "+ TwoByThree(value));
  12. }
  13.  
  14.  
  15.  
  16.  
  17. }
Add Comment
Please, Sign In to add comment