Computer Science, asked by diya0650, 16 days ago

Write a program to solve the pattern:
A
C B
D E F
J I H G
K L M N O​

Answers

Answered by mrsalabh9311
0

Answer:

ABCDEFGHIJKLMNO I THIK IT IS A CORRECT ANSWER

Answered by swathikachandhalaswa
1

Answer:

public class KboatStringPattern

{

public static void main(String args[]) {

char ch = 'A';

for (int i = 0; i < 5; i++) {

for (int j = 0; j <= i; j++) {

System.out.print(ch++);

}

System.out.println();

}

}

}

Explanation:

I think answer is this one only

Similar questions