DILI
11. Write a program
in Java to display the following pattern:
(vi) a a a a
b b b b
A A A A
В В В В
Answers
Answered by
0
Explanation:
Java Code: public class Exercise8 { public static void main(String[] args) { System.out.println(" J a v v a "); System.out.println(" J a a v v a a"); System.out.println("J J aaaaa V V aaaaa"); System.out.println(" JJ a a V a a"); } } ...
Similar questions