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
0
Answer:
ABCDEFGHIJKLMNO I THIK IT IS A CORRECT ANSWER
Answered by
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
English,
8 days ago
Math,
8 days ago
English,
16 days ago
English,
9 months ago
Social Sciences,
9 months ago