Write a program in Java to display the following pattern:
$#$#$ $#$# $#$ $# $
10 Likes
public class KboatPattern { public static void main(String args[]) { for (int i = 5; i >= 1; i--) { for (int j = 1; j <= i; j++) { if (j % 2 == 0) System.out.print('#'); else System.out.print('$'); } System.out.println(); } } }
Answered By
4 Likes
a ce gik moqs
Write a program in Java to find the sum of the given series:
S = 1! + 2! + 3! + …. + n!