Need Help Solving this problem... How do I start my for loop to display the 7 district aestricks

Look at the API of the Scanner class. Use the methods hasNextInt and nextInt.
Read the numbers and use a for-loop for each line, in the while loop. The numbers will tell you how many asterisk you will print. Also read the assignment for that matter.
Surely you know how to write a for loop:

while has next int {
   read that int
   for loop {
      System.out.print("*") // to print asterisks at the same line
  }
  System.out.println(); // to change lines
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.