Answers for "assume that the int variables i and j have been declared, and that n has been declared and initialized. using for loops (you may need more than one), write code that will cause a triangle of asterisks of size n to be output to the screen."

0

Given an int variable n that has already been declared and initialized to a positive value, use a do...while loop to print a single line consisting of n asterisks. Use no variables other than n.

do
{
System.out.print("*");
n--;
}
while (n > 0);
Posted by: Guest on October-15-2020

Code answers related to "assume that the int variables i and j have been declared, and that n has been declared and initialized. using for loops (you may need more than one), write code that will cause a triangle of asterisks of size n to be output to the screen."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language