Advertisement
veronikaaa86

02. Nums 1...10

Oct 2nd, 2021
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package firstSteps;
  2.  
  3. public class P02Nums1To10 {
  4. public static void main(String[] args) {
  5. System.out.println(1);
  6. System.out.println(2);
  7. System.out.println(3);
  8. System.out.println(4);
  9. System.out.println(5);
  10. System.out.println(6);
  11. System.out.println(7);
  12. System.out.println(8);
  13. System.out.println(9);
  14. System.out.println(10);
  15. }
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement