Question: Write a for loop that will print out all the multiplesof 3 from 3 to 36. My code is: for ( N = 3; N
Write a for loop that will print out all the multiplesof 3 from 3 to 36.
My code is:
for ( N = 3; N <= 36; N = N + 3 ) { System.out.println( N ); }
but it doesnt work.
Step by Step Solution
There are 3 Steps involved in it
Answer class te... View full answer
Get step-by-step solutions from verified subject matter experts
