Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public class Grades {
  2. public static void main(String[] args) {
  3.  
  4. System.out.printf("%-20s", "Ivancho");
  5. System.out.printf("%d%n",2);
  6. System.out.printf("%-20s", "Mariika");
  7. System.out.printf("%d%n", 6);
  8. System.out.printf("%-20s", "Pencho");
  9. System.out.printf("%d%n",4);
  10. System.out.printf("%-20s", "Golqm Petko");
  11. System.out.printf("%d%n", 5);
  12.  
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement