summaryrefslogtreecommitdiffstats
path: root/Java/WedgeOfStars.java
blob: e9c42e20c2fdafc12a335de7b21720ac49e5b45c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.io.BufferedReader;
import java.io.InputStreamReader;

class WedgeofStars {
    public static void main(String[] args) throws java.io.IOException {
		    int iterations;
		    BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
		    System.out.println("Number of stars:");
		    iterations = Integer.parseInt(input.readLine());
		    

		    for(iterations=iterations;iterations>0;iterations--){
			    System.out.print("\n");
			    for(int i=iterations;i>0;i--){
			    System.out.print("*");
			    }
    }


}}
//By msglm; Licensed under the AGPL v3