Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- public class Main {
- public static void main(String[] args) {
- printStars(5);
- printStars(3);
- printStars(9);
- }
- public static void printStars(int number) {
- for (int i = 0; i < number; i++) {
- System.out.print("*");
- }
- System.out.println("");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment