1. public static void main(String[] args) {
    2. int i = 1;
    3. while(i<=5){
    4. System.out.print("*");
    5. i++;
    6. }
    7. }