{}
Black
83
%Off
November

Stop copy pasting code you don't actually understand

Build the coding confidence you need to become a developer companies will fight for

Stop copy pasting code you don't actually understand

Become a PRO
Become a PRO
Black
83
%Off
November

Stop copy pasting code you don't actually understand

Build the coding confidence you need to become a developer companies will fight for

Stop copy pasting code you don't actually understand

Become a PRO
Become a PRO
run-icon
Main.java
import java.util.*; class Pattern { public static void main(String[] args) { Scanner sc= new Scanner(System.in); System.out.print("enter the value of row ="); int n=sc.nextInt(); for(int i=1; i<=n; i++){ int a=1; for(int j=1; j<=i; j++){ System.out.print(a+" "); a+=2; } System.out.println(); } } }
Output