grodek118

Printing Stars

Apr 22nd, 2022
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. package com.company;
  2.  
  3.  
  4. public class Main {
  5. public static void main(String[] args) {
  6. printStars(5);
  7. printStars(3);
  8. printStars(9);
  9.  
  10. }
  11. public static void printStars(int number) {
  12.  
  13. for (int i = 0; i < number; i++) {
  14. System.out.print("*");
  15. }
  16. System.out.println("");
  17. }
  18.  
  19. }
  20.  
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment