Guest User

Untitled

a guest
Apr 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public class Foo {
  2.  
  3. public static void main(String[] args) {
  4. for (int i = 0; i < 9; i++) {
  5. System.out.println(String.format("%d => %d", i, (i + 7) % 10));
  6. }
  7. }
  8.  
  9. }
Add Comment
Please, Sign In to add comment