Answer: Disagree
Explanation:
Abstract art is a way to express yourself through art by using lines, shapes, colors, forms, and marks to portray what the artist may be feeling. It is appealing since it can connect with the observer that is looking at abstract art.
such art that uses boxes such as: Wee Blue Coo Mondrian Abstract Cubes Squares
This art uses a lot of squares that are very vibrant showing that the artist is portraying something that is overfilled with joyfulness.
In Java Please
4.24 LAB: Print string in reverse
Write a program that takes in a line of text as input, and outputs that line of text in reverse. The program repeats, ending when the user enters "Done", "done", or "d" for the line of text.
Ex: If the input is:
Hello there
Hey
done
the output is:
ereht olleH
yeH
The program that takes in a line of text as input, and outputs that line of text in reverse is given
The Programimport java.util.Scanner;
public class ReverseString {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String line;
do {
line = input.nextLine();
if (!line.equalsIgnoreCase("done") && !line.equalsIgnoreCase("d")) {
String reversed = reverseString(line);
System.out.println(reversed);
}
} while (!line.equalsIgnoreCase("done") && !line.equalsIgnoreCase("d"));
}
public static String reverseString(String text) {
StringBuilder reversedText = new StringBuilder();
for (int i = text.length() - 1; i >= 0; i--) {
reversedText.append(text.charAt(i));
}
return reversedText.toString();
}
}
Read more about programs here:
https://brainly.com/question/30783869
#SPJ1