lundi 13 avril 2020

I am trying to make a pattern (triangle in java)

I am trying to make this pattern in java:

* * * * * * * * 
* * * * * * * 
* * * * * * 
* * * * * 
* * * * 
* * * 
* * 
* 

This is the code which I have written:

package practise;
import java.util.Scanner;
public class PatternsUsingLoop {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();       
        for(int j=1;j<=n;j++) { 
            for(int k=n;k>=1;k--) {

                System.out.print("* ");
            }
            System.out.println();
        }
    }
}

please tell me the error

Aucun commentaire:

Enregistrer un commentaire