Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
3c
Language:
Ada
Assembly
Bash
C#
C++ (gcc)
C++ (clang)
C++ (vc++)
C (gcc)
C (clang)
C (vc)
Client Side
Clojure
Common Lisp
D
Elixir
Erlang
F#
Fortran
Go
Haskell
Java
Javascript
Kotlin
Lua
MySql
Node.js
Ocaml
Octave
Objective-C
Oracle
Pascal
Perl
Php
PostgreSQL
Prolog
Python
Python 3
R
Rust
Ruby
Scala
Scheme
Sql Server
Swift
Tcl
Visual Basic
Layout:
Vertical
Horizontal
//'main' method must be in a class 'Rextester'. //openjdk version '11.0.5' //Lokesh reddy 7002 import java.util.*; import java.lang.*; class Rextester { public static void main(String args[]) { int i , j , n ,a=1; Scanner in = new Scanner(System.in); System.out.println("Enter the number of line to print\n"); n = in.nextInt(); for(i=1;i<=n;i++) { for(int s=0;s<n-i;s++) { System.out.print(" "); } for(j=1;j<=i;j++) { System.out.print(a+" "); a++; } System.out.println("\n"); } } }
4
[
-
]
Show input
Compilation time: 0.82 sec, absolute running time: 0.26 sec, cpu time: 0.23 sec, memory peak: 37 Mb, absolute service time: 1,21 sec
edit mode
|
history
|
discussion
Enter the number of line to print 1 2 3 4 5 6 7 8 9 10