Computer Science, asked by annosgdgVASU, 1 year ago

Java program to display pattern 11231234

Answers

Answered by Njinxj1n2
0
class test{    public static void face()    {        int a = 1,b = 3,c = 1;        System.out.print(a);        for(int i = 3; i<=4;i++)        {            for(int j = 1; j <= b; j++)            {                System.out.print(j);            }            b++;        }    }}

Njinxj1n2: copy it to a Blue j and re-arrange it.I'am sorry it broke down.
Similar questions