Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class a13NumberPyramid {
- public static void main(String[] args) {
- Scanner scan = new Scanner(System.in);
- int n = Integer.parseInt(scan.nextLine());
- int num = 1;
- for(int i=0; i<n ; i++){
- for(int j=0; j<n ; j++){
- if(i>=j){
- System.out.print(num);
- System.out.print(" ");
- num++;
- }
- if(num > n){
- break;
- }
- }
- System.out.println();
- if(num > n){
- break;
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment