Write a for loop that prints the integers 0 through 39, separated by spaces. code example
Example: 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);