Write a JAVA Program to display the following pattern:
22222
44444
66666
88888
Answers
Answered by
0
Answer:
public class Myclass
{public static void main (String args[ ] )
{System.out.println(22222);
System.out.println(44444);
System.out.println(66666);
System.out.println(88888);
}
}
plzz follow me
mark as brainliest
Answered by
0
Explanation:
Answer with explaination is in attachment image
Attachments:
Similar questions