The answer is c because it’s showing what different types of brushes and their specific styles
Answer:
Umm... I just want points. Sorry.
Explanation:
I know you're going to delete my comment but please let it stay.
I have a essay and I need it to be completed and I need to ask a question. If you have a better reason why you need me to explain it, then please reply. IF you can.
Thanks
: )
Answer:
// here is code in java.
import java.util.*;
// class definition
class Solution
{
// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// declare and initialize string pattern
String patt1="//////////////////////";
// declare and initialize string pattern
String patt2="|| Victory is mine! ||";
// both patterns are printed alternatively
for(int x=0;x<10;x++)
{
// first print pattern 1
if(x%2==0)
System.out.println(patt1);
// then print second pattern
else
System.out.println(patt2);
}
}catch(Exception ex){
return;}
}
}
Explanation:
Declare and initialize two strings patterns.As there are first pattern on every even line and second pattern on odd line. Run the loop for 10 time and print the pattern based on the position of lines.
Output:
//////////////////////
|| Victory is mine! ||
//////////////////////
|| Victory is mine! ||
//////////////////////
|| Victory is mine! ||
//////////////////////
|| Victory is mine! ||
//////////////////////
|| Victory is mine! ||