Computer Science, asked by mandakinisharma672, 8 months ago

Write a programming in Java by while loop A21 321 4321 52 54321

Answers

Answered by ahmedalasaadi2007
1

Answer:

i know (not really)

Explanation:

Answered by MʏSᴛᴇʀɪᴏSᴛᴀʀᴋ
0

Answer:

nitish8089 Ace

Your program for this pattern is

public class Program

{

public static void main(String[] args) {

for(int i=4;i>=1;i--){

for(int j=i;j>=1;j--){

System.out.print(j);}

System.out.println();}

}

}

Explanation:

please mark me brainliest and follow me

Similar questions