write a program to print aA bB cC dD in java using double for loop
Answers
Answered by
0
Answer:
wyyegrbfjfhr6271i3hdbdhsiqoq9wyet
Explanation:
find the area of a rectangle or a square you need to multiply the length and the width of a rectangle or a square. There are different units for perimeter andarea The perimeter has the same units as the length of the sides of rectangle or square whereas thearea's unit is squared.
Attachments:
Answered by
0
Answer:
for(char ch='A';ch<='D';)
for(char c='a';c<='d';){
System.out.print(c + "" + ch + " ");
c++;
ch++;
}
Similar questions